btcp-browser-agent 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CLAUDE.md +230 -0
- package/LICENSE +21 -0
- package/README.md +309 -0
- package/SKILL.md +143 -0
- package/SNAPSHOT_IMPROVEMENTS.md +302 -0
- package/USAGE.md +146 -0
- package/dist/index.d.ts +34 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +35 -0
- package/dist/index.js.map +1 -0
- package/docs/browser-cli-design.md +500 -0
- package/examples/chrome-extension/CHANGELOG.md +210 -0
- package/examples/chrome-extension/DEBUG.md +231 -0
- package/examples/chrome-extension/ERROR_FIXED.md +147 -0
- package/examples/chrome-extension/QUICK_TEST.md +189 -0
- package/examples/chrome-extension/README.md +149 -0
- package/examples/chrome-extension/SESSION_ONLY_MODE.md +305 -0
- package/examples/chrome-extension/TEST_WITH_YOUR_TABS.md +97 -0
- package/examples/chrome-extension/build.js +43 -0
- package/examples/chrome-extension/manifest.json +37 -0
- package/examples/chrome-extension/package-lock.json +1063 -0
- package/examples/chrome-extension/package.json +21 -0
- package/examples/chrome-extension/popup.html +195 -0
- package/examples/chrome-extension/src/background.ts +12 -0
- package/examples/chrome-extension/src/content.ts +7 -0
- package/examples/chrome-extension/src/popup.ts +303 -0
- package/examples/chrome-extension/src/scenario-google-github.ts +389 -0
- package/examples/chrome-extension/test-page.html +127 -0
- package/examples/chrome-extension/tests/README.md +206 -0
- package/examples/chrome-extension/tests/scenario-google-to-github-star.ts +380 -0
- package/examples/chrome-extension/tsconfig.json +14 -0
- package/examples/snapshots/README.md +207 -0
- package/examples/snapshots/amazon-com-detail.html +9528 -0
- package/examples/snapshots/amazon-com-detail.snapshot.txt +997 -0
- package/examples/snapshots/convert-snapshots.ts +97 -0
- package/examples/snapshots/edition-cnn-com.html +13292 -0
- package/examples/snapshots/edition-cnn-com.snapshot.txt +562 -0
- package/examples/snapshots/github-com-microsoft-vscode.html +2916 -0
- package/examples/snapshots/github-com-microsoft-vscode.snapshot.txt +455 -0
- package/examples/snapshots/google-search.html +20012 -0
- package/examples/snapshots/google-search.snapshot.txt +195 -0
- package/examples/snapshots/metadata.json +86 -0
- package/examples/snapshots/npr-org-templates.html +2031 -0
- package/examples/snapshots/npr-org-templates.snapshot.txt +224 -0
- package/examples/snapshots/stackoverflow-com.html +5216 -0
- package/examples/snapshots/stackoverflow-com.snapshot.txt +2404 -0
- package/examples/snapshots/test-all-mode.html +46 -0
- package/examples/snapshots/test-all-mode.snapshot.txt +5 -0
- package/examples/snapshots/validate.test.ts +296 -0
- package/package.json +65 -0
- package/packages/cli/package.json +42 -0
- package/packages/cli/src/__tests__/cli.test.ts +434 -0
- package/packages/cli/src/__tests__/errors.test.ts +226 -0
- package/packages/cli/src/__tests__/executor.test.ts +275 -0
- package/packages/cli/src/__tests__/formatter.test.ts +260 -0
- package/packages/cli/src/__tests__/parser.test.ts +288 -0
- package/packages/cli/src/__tests__/suggestions.test.ts +255 -0
- package/packages/cli/src/commands/back.ts +22 -0
- package/packages/cli/src/commands/check.ts +33 -0
- package/packages/cli/src/commands/clear.ts +33 -0
- package/packages/cli/src/commands/click.ts +32 -0
- package/packages/cli/src/commands/closetab.ts +31 -0
- package/packages/cli/src/commands/eval.ts +41 -0
- package/packages/cli/src/commands/fill.ts +30 -0
- package/packages/cli/src/commands/focus.ts +33 -0
- package/packages/cli/src/commands/forward.ts +22 -0
- package/packages/cli/src/commands/goto.ts +34 -0
- package/packages/cli/src/commands/help.ts +162 -0
- package/packages/cli/src/commands/hover.ts +34 -0
- package/packages/cli/src/commands/index.ts +129 -0
- package/packages/cli/src/commands/newtab.ts +35 -0
- package/packages/cli/src/commands/press.ts +40 -0
- package/packages/cli/src/commands/reload.ts +25 -0
- package/packages/cli/src/commands/screenshot.ts +27 -0
- package/packages/cli/src/commands/scroll.ts +64 -0
- package/packages/cli/src/commands/select.ts +35 -0
- package/packages/cli/src/commands/snapshot.ts +21 -0
- package/packages/cli/src/commands/tab.ts +32 -0
- package/packages/cli/src/commands/tabs.ts +26 -0
- package/packages/cli/src/commands/text.ts +27 -0
- package/packages/cli/src/commands/title.ts +17 -0
- package/packages/cli/src/commands/type.ts +38 -0
- package/packages/cli/src/commands/uncheck.ts +33 -0
- package/packages/cli/src/commands/url.ts +17 -0
- package/packages/cli/src/commands/wait.ts +54 -0
- package/packages/cli/src/errors.ts +164 -0
- package/packages/cli/src/executor.ts +68 -0
- package/packages/cli/src/formatter.ts +215 -0
- package/packages/cli/src/index.ts +257 -0
- package/packages/cli/src/parser.ts +195 -0
- package/packages/cli/src/suggestions.ts +207 -0
- package/packages/cli/src/terminal/Terminal.ts +365 -0
- package/packages/cli/src/terminal/index.ts +5 -0
- package/packages/cli/src/types.ts +155 -0
- package/packages/cli/tsconfig.json +20 -0
- package/packages/core/package.json +35 -0
- package/packages/core/src/actions.ts +1210 -0
- package/packages/core/src/errors.ts +296 -0
- package/packages/core/src/index.test.ts +638 -0
- package/packages/core/src/index.ts +220 -0
- package/packages/core/src/ref-map.ts +107 -0
- package/packages/core/src/snapshot.ts +873 -0
- package/packages/core/src/types.ts +536 -0
- package/packages/core/tsconfig.json +23 -0
- package/packages/extension/README.md +129 -0
- package/packages/extension/package.json +43 -0
- package/packages/extension/src/background.ts +888 -0
- package/packages/extension/src/content.ts +172 -0
- package/packages/extension/src/index.ts +579 -0
- package/packages/extension/src/session-manager.ts +385 -0
- package/packages/extension/src/session-types.ts +144 -0
- package/packages/extension/src/types.ts +162 -0
- package/packages/extension/tsconfig.json +28 -0
- package/src/index.ts +64 -0
- package/tsconfig.build.json +12 -0
- package/tsconfig.json +26 -0
- package/vitest.config.ts +13 -0
|
@@ -0,0 +1,224 @@
|
|
|
1
|
+
PAGE: http://localhost/ | Rose Mary Woods, Devoted Nixon Secretary, Dies : NPR | viewport=1024x768
|
|
2
|
+
SNAPSHOT: elements=1047 refs=221
|
|
3
|
+
|
|
4
|
+
LINK "Skip to main content" @ref:0 /ul/li[1]/a
|
|
5
|
+
LINK "Keyboard shortcuts for audio player" @ref:1 /ul/li[2]/a
|
|
6
|
+
BUTTON @ref:2 /div#player-react-mount[4]/section#npr-player/button#npr-player__stream-initiated[1]
|
|
7
|
+
BUTTON @ref:3 /div#player-react-mount[4]/section#npr-player/button#npr-player__segment-initiated[2]
|
|
8
|
+
BUTTON @ref:4 /div#player-react-mount[4]/section#npr-player/button[3]
|
|
9
|
+
BUTTON @ref:5 /div#player-react-mount[4]/section#npr-player/button[4]
|
|
10
|
+
BUTTON @ref:6 /div#player-react-mount[4]/section#npr-player/button#npr-player__audio-complete[5]
|
|
11
|
+
BUTTON "NPR 24 Hour Program StreamOn Air Now" @ref:7 /div#player-react-mount[4]/section#npr-player/article.item-initial/button
|
|
12
|
+
BUTTON "Hourly News" @ref:8 /div#player-react-mount[4]/section#npr-player/ul/li[1]/button.btn-newscast
|
|
13
|
+
BUTTON "Listen Live" @ref:9 /div#player-react-mount[4]/section#npr-player/ul/li[2]/button.btn-live-radio
|
|
14
|
+
BUTTON "My Playlist" @ref:10 /div#player-react-mount[4]/section#npr-player/ul/li[3]/button.btn-playlist
|
|
15
|
+
BUTTON "Open Navigation Menu" @ref:11 /header#globalheader/nav.navigation/ul.navigation__top-level/li.navigation__toggle-wrap[1]/button#navigation__toggle--open
|
|
16
|
+
LINK @ref:12 /header#globalheader/nav.navigation/ul.navigation__top-level/li.navigation__home[2]/a
|
|
17
|
+
LINK "Newsletters" @ref:13 /header#globalheader/nav.navigation/ul.navigation__top-level/li.navigation__newsletters[4]/a
|
|
18
|
+
LINK "Sign In" @ref:14 /header#globalheader/nav.navigation/ul.navigation__top-level/li#user-account-dropdown-mount[5]/a
|
|
19
|
+
LINK "NPR Shop" @ref:15 /header#globalheader/nav.navigation/ul.navigation__top-level/li.navigation__shop[6]/a
|
|
20
|
+
LINK "Donate" @ref:16 /header#globalheader/nav.navigation/ul.navigation__top-level/li[7]/a
|
|
21
|
+
LINK "Local Station" @ref:17 /nav.navigation/ul.navigation__top-level/li[7]/ul/li[1]/a
|
|
22
|
+
LINK "NPR Network" @ref:18 /nav.navigation/ul.navigation__top-level/li[7]/ul/li[2]/a
|
|
23
|
+
BUTTON "Close Navigation Menu" @ref:19 (expanded) /header#globalheader/nav.navigation/section#main-menu[1]/div.menu__inner/header.menu__header/button#navigation__toggle--close
|
|
24
|
+
LINK "Home" @ref:20 /section#main-menu[1]/div.menu__inner/ul.menu__list/li.menu__item[1]/div.menu__item-inner/a
|
|
25
|
+
LINK "News" @ref:21 /section#main-menu[1]/div.menu__inner/ul.menu__list/li.menu__item[2]/div.menu__item-inner/a
|
|
26
|
+
BUTTON "Expand/collapse submenu for News" @ref:22 /section#main-menu[1]/div.menu__inner/ul.menu__list/li.menu__item[2]/div.menu__item-inner/button.menu__toggle-submenu
|
|
27
|
+
LINK "National" @ref:23 /div.menu__inner/ul.menu__list/li.menu__item[2]/ul/li[1]/a
|
|
28
|
+
LINK "World" @ref:24 /div.menu__inner/ul.menu__list/li.menu__item[2]/ul/li[2]/a
|
|
29
|
+
LINK "Politics" @ref:25 /div.menu__inner/ul.menu__list/li.menu__item[2]/ul/li[3]/a
|
|
30
|
+
LINK "Business" @ref:26 /div.menu__inner/ul.menu__list/li.menu__item[2]/ul/li[4]/a
|
|
31
|
+
LINK "Health" @ref:27 /div.menu__inner/ul.menu__list/li.menu__item[2]/ul/li[5]/a
|
|
32
|
+
LINK "Science" @ref:28 /div.menu__inner/ul.menu__list/li.menu__item[2]/ul/li[6]/a
|
|
33
|
+
LINK "Climate" @ref:29 /div.menu__inner/ul.menu__list/li.menu__item[2]/ul/li[7]/a
|
|
34
|
+
LINK "Race" @ref:30 /div.menu__inner/ul.menu__list/li.menu__item[2]/ul/li[8]/a
|
|
35
|
+
LINK "Culture" @ref:31 /section#main-menu[1]/div.menu__inner/ul.menu__list/li.menu__item[3]/div.menu__item-inner/a
|
|
36
|
+
BUTTON "Expand/collapse submenu for Culture" @ref:32 /section#main-menu[1]/div.menu__inner/ul.menu__list/li.menu__item[3]/div.menu__item-inner/button.menu__toggle-submenu
|
|
37
|
+
LINK "Books" @ref:33 /div.menu__inner/ul.menu__list/li.menu__item[3]/ul/li[1]/a
|
|
38
|
+
LINK "Movies" @ref:34 /div.menu__inner/ul.menu__list/li.menu__item[3]/ul/li[2]/a
|
|
39
|
+
LINK "Television" @ref:35 /div.menu__inner/ul.menu__list/li.menu__item[3]/ul/li[3]/a
|
|
40
|
+
LINK "Pop Culture" @ref:36 /div.menu__inner/ul.menu__list/li.menu__item[3]/ul/li[4]/a
|
|
41
|
+
LINK "Food" @ref:37 /div.menu__inner/ul.menu__list/li.menu__item[3]/ul/li[5]/a
|
|
42
|
+
LINK "Art & Design" @ref:38 /div.menu__inner/ul.menu__list/li.menu__item[3]/ul/li[6]/a
|
|
43
|
+
LINK "Performing Arts" @ref:39 /div.menu__inner/ul.menu__list/li.menu__item[3]/ul/li[7]/a
|
|
44
|
+
LINK "Life Kit" @ref:40 /div.menu__inner/ul.menu__list/li.menu__item[3]/ul/li[8]/a
|
|
45
|
+
LINK "Gaming" @ref:41 /div.menu__inner/ul.menu__list/li.menu__item[3]/ul/li[9]/a
|
|
46
|
+
LINK "Music" @ref:42 /section#main-menu[1]/div.menu__inner/ul.menu__list/li.menu__item[4]/div.menu__item-inner/a
|
|
47
|
+
BUTTON "Expand/collapse submenu for Music" @ref:43 /section#main-menu[1]/div.menu__inner/ul.menu__list/li.menu__item[4]/div.menu__item-inner/button.menu__toggle-submenu
|
|
48
|
+
LINK "The Best Music of 2025" @ref:44 /div.menu__inner/ul.menu__list/li.menu__item[4]/ul/li[1]/a
|
|
49
|
+
LINK "All Songs Considered" @ref:45 /div.menu__inner/ul.menu__list/li.menu__item[4]/ul/li[2]/a
|
|
50
|
+
LINK "Tiny Desk" @ref:46 /div.menu__inner/ul.menu__list/li.menu__item[4]/ul/li[3]/a
|
|
51
|
+
LINK "Music Features" @ref:47 /div.menu__inner/ul.menu__list/li.menu__item[4]/ul/li[4]/a
|
|
52
|
+
LINK "Live Sessions" @ref:48 /div.menu__inner/ul.menu__list/li.menu__item[4]/ul/li[5]/a
|
|
53
|
+
LINK "Podcasts & Shows" @ref:49 /section#main-menu[1]/div.menu__inner/ul.menu__list/li.menu__item[5]/div.menu__item-inner[1]/a
|
|
54
|
+
BUTTON "Expand/collapse submenu for Podcasts & Shows" @ref:50 /section#main-menu[1]/div.menu__inner/ul.menu__list/li.menu__item[5]/div.menu__item-inner[1]/button.menu__toggle-submenu
|
|
55
|
+
LINK "Morning Edition" @ref:51 /div.menu__inner/ul.menu__list/li.menu__item[5]/ul[1]/li[1]/a
|
|
56
|
+
LINK "Weekend Edition Saturday" @ref:52 /div.menu__inner/ul.menu__list/li.menu__item[5]/ul[1]/li[2]/a
|
|
57
|
+
LINK "Weekend Edition Sunday" @ref:53 /div.menu__inner/ul.menu__list/li.menu__item[5]/ul[1]/li[3]/a
|
|
58
|
+
LINK "All Things Considered" @ref:54 /div.menu__inner/ul.menu__list/li.menu__item[5]/ul[1]/li[4]/a
|
|
59
|
+
LINK "Fresh Air" @ref:55 /div.menu__inner/ul.menu__list/li.menu__item[5]/ul[1]/li[5]/a
|
|
60
|
+
LINK "Up First" @ref:56 /div.menu__inner/ul.menu__list/li.menu__item[5]/ul[1]/li[6]/a
|
|
61
|
+
LINK "Embedded" @ref:57 /div.menu__inner/ul.menu__list/li.menu__item[5]/ul[2]/li[1]/a
|
|
62
|
+
LINK "The NPR Politics Podcast" @ref:58 /div.menu__inner/ul.menu__list/li.menu__item[5]/ul[2]/li[2]/a
|
|
63
|
+
LINK "Throughline" @ref:59 /div.menu__inner/ul.menu__list/li.menu__item[5]/ul[2]/li[3]/a
|
|
64
|
+
LINK "Trump's Terms" @ref:60 /div.menu__inner/ul.menu__list/li.menu__item[5]/ul[2]/li[4]/a
|
|
65
|
+
LINK "More Podcasts & Shows" @ref:61 /div.menu__inner/ul.menu__list/li.menu__item[5]/ul[3]/li/a
|
|
66
|
+
LINK "Search" @ref:62 /section#main-menu[1]/div.menu__inner/ul.menu__list/li.menu__item[6]/div.menu__item-inner/a#navigation_dropdown-search
|
|
67
|
+
LINK "Newsletters" @ref:63 /section#main-menu[1]/div.menu__inner/ul.menu__list/li.menu__item[7]/div.menu__item-inner/a
|
|
68
|
+
LINK "NPR Shop" @ref:64 /section#main-menu[1]/div.menu__inner/ul.menu__list/li.menu__item[8]/div.menu__item-inner/a
|
|
69
|
+
LINK "Sign In" @ref:65 /nav.navigation/section#main-menu[1]/div.menu__inner/ul.menu__list/li.menu__item[9]/a
|
|
70
|
+
LINK "music" @ref:66 /nav.navigation/section.menu[2]/div.menu__list-wrap/ul.menu__list/li.menu__item[1]/a
|
|
71
|
+
LINK "The Best Music of 2025" @ref:67 /nav.navigation/section.menu[2]/div.menu__list-wrap/ul.menu__list/li.menu__item[2]/a
|
|
72
|
+
LINK "All Songs Considered" @ref:68 /nav.navigation/section.menu[2]/div.menu__list-wrap/ul.menu__list/li.menu__item[3]/a
|
|
73
|
+
LINK "Tiny Desk" @ref:69 /nav.navigation/section.menu[2]/div.menu__list-wrap/ul.menu__list/li.menu__item[4]/a
|
|
74
|
+
LINK "Music Features" @ref:70 /nav.navigation/section.menu[2]/div.menu__list-wrap/ul.menu__list/li.menu__item[5]/a
|
|
75
|
+
LINK "Live Sessions" @ref:71 /nav.navigation/section.menu[2]/div.menu__list-wrap/ul.menu__list/li.menu__item[6]/a
|
|
76
|
+
LINK "About NPR" @ref:72 /nav.navigation/section.menu[3]/div.menu__list-wrap/ul.menu__list/li.menu__item[1]/a
|
|
77
|
+
LINK "Diversity" @ref:73 /nav.navigation/section.menu[3]/div.menu__list-wrap/ul.menu__list/li.menu__item[2]/a
|
|
78
|
+
LINK "Support" @ref:74 /nav.navigation/section.menu[3]/div.menu__list-wrap/ul.menu__list/li.menu__item[3]/a
|
|
79
|
+
LINK "Careers" @ref:75 /nav.navigation/section.menu[3]/div.menu__list-wrap/ul.menu__list/li.menu__item[4]/a
|
|
80
|
+
LINK "Press" @ref:76 /nav.navigation/section.menu[3]/div.menu__list-wrap/ul.menu__list/li.menu__item[5]/a
|
|
81
|
+
LINK "Ethics" @ref:77 /nav.navigation/section.menu[3]/div.menu__list-wrap/ul.menu__list/li.menu__item[6]/a
|
|
82
|
+
LINK "Obituaries" @ref:78 /main/div#wrapper[2]/section#main-section/article/h3/a
|
|
83
|
+
TEXTBOX @ref:79 [type=hidden] /main/div#wrapper[2]/section#main-section/article/input#title4463532[1]
|
|
84
|
+
TEXTBOX @ref:80 [type=hidden] /main/div#wrapper[2]/section#main-section/article/input#shortTitle4463532[2]
|
|
85
|
+
TEXTBOX @ref:81 [type=hidden] /main/div#wrapper[2]/section#main-section/article/input#modelFullUrl4463532[3]
|
|
86
|
+
LINK "Morning Edition" @ref:82 /main/div#wrapper[2]/section#main-section/article/div#story-meta[3]/a
|
|
87
|
+
BUTTON "Listen· 2:20" @ref:83 /div#wrapper[2]/section#main-section/article/div#headlineaudio[4]/article#res4463533/button[1]
|
|
88
|
+
BUTTON "Playlist" @ref:84 /div#wrapper[2]/section#main-section/article/div#headlineaudio[4]/article#res4463533/button[2]
|
|
89
|
+
BUTTON "Toggle more options" @ref:85 /div#wrapper[2]/section#main-section/article/div#headlineaudio[4]/article#res4463533/button
|
|
90
|
+
LINK "Download" @ref:86 /article/div#headlineaudio[4]/article#res4463533/ul/li[1]/a
|
|
91
|
+
BUTTON "Embed" @ref:87 /article/div#headlineaudio[4]/article#res4463533/ul/li[2]/button
|
|
92
|
+
BUTTON @ref:88 /article/div#headlineaudio[4]/article#res4463533/ul/li[2]/button.btn-close
|
|
93
|
+
TEXTBOX "Embed" @ref:89 /div#headlineaudio[4]/article#res4463533/ul/li[2]/label/input
|
|
94
|
+
BUTTON "Enlarge this image" @ref:90 /div#wrapper[2]/section#main-section/article/div#storytext[5]/div#res111029306/button
|
|
95
|
+
BUTTON "Facebook" @ref:91 /div#wrapper[2]/section#main-section/article/ul/li[1]/button
|
|
96
|
+
BUTTON "Flipboard" @ref:92 /div#wrapper[2]/section#main-section/article/ul/li[2]/button
|
|
97
|
+
BUTTON "Email" @ref:93 /div#wrapper[2]/section#main-section/article/ul/li[3]/button
|
|
98
|
+
LINK "2 police officers relive Jan. 6 through their o..." @ref:94 /div#wrapper[2]/section#main-section/article/aside[1]/article/a#cXLinkIdmkh7i777z7prn3d5
|
|
99
|
+
LINK "NPR Investigation: January 6, 2021" @ref:95 /section#main-section/article/aside[1]/article/h5/a#cXLinkIdmkh7i777uhg12w6k
|
|
100
|
+
LINK "2 police officers relive Jan. 6 through their o..." @ref:96 /section#main-section/article/aside[1]/article/h4/a#cXLinkIdmkh7i778nvq3iw4f
|
|
101
|
+
LINK "Venezuela's Machado says she presented her Nobe..." @ref:97 /div#wrapper[2]/section#main-section/article/aside[1]/article/a#cXLinkIdmkh7i778steu0r2v
|
|
102
|
+
LINK "Politics" @ref:98 /section#main-section/article/aside[1]/article/h5/a#cXLinkIdmkh7i778dtnhrs2b
|
|
103
|
+
LINK "Venezuela's Machado says she presented her Nobe..." @ref:99 /section#main-section/article/aside[1]/article/h4/a#cXLinkIdmkh7i778mk02q9fc
|
|
104
|
+
LINK "NPR+ | The News Roundup For October 24, 2025" @ref:100 /div#wrapper[2]/section#main-section/article/aside[1]/article/a#cXLinkIdmkh7i778eatsbvmq
|
|
105
|
+
LINK "NPR+ | The News Roundup For October 24, 2025" @ref:101 /section#main-section/article/aside[1]/article/h4/a#cXLinkIdmkh7i778s092j0uk
|
|
106
|
+
LINK "House Republicans are investigating Jan. 6. NPR..." @ref:102 /div#wrapper[2]/section#main-section/article/aside[1]/article/a#cXLinkIdmkh7i778lm23riyj
|
|
107
|
+
LINK "Investigations" @ref:103 /section#main-section/article/aside[1]/article/h5/a#cXLinkIdmkh7i778owydaowv
|
|
108
|
+
LINK "House Republicans are investigating Jan. 6. NPR..." @ref:104 /section#main-section/article/aside[1]/article/h4/a#cXLinkIdmkh7i778v02jcv5n
|
|
109
|
+
LINK "NPR+ | The News Roundup For November 14, 2025" @ref:105 /div#wrapper[2]/section#main-section/article/aside[1]/article/a#cXLinkIdmkh7i778717wtpvk
|
|
110
|
+
LINK "NPR+ | The News Roundup For November 14, 2025" @ref:106 /section#main-section/article/aside[1]/article/h4/a#cXLinkIdmkh7i779i4igybi0
|
|
111
|
+
LINK "NPR+ | The News Roundup For January 9, 2026" @ref:107 /div#wrapper[2]/section#main-section/article/aside[1]/article/a#cXLinkIdmkh7i779kahdox7s
|
|
112
|
+
LINK "NPR+ | The News Roundup For January 9, 2026" @ref:108 /section#main-section/article/aside[1]/article/h4/a#cXLinkIdmkh7i779676idjeh
|
|
113
|
+
LINK "claudette colvin obituary montgomery bus civil ..." @ref:109 /section#main-section/article/aside[2]/section[1]/article/a
|
|
114
|
+
LINK "Obituaries" @ref:110 /article/aside[2]/section[1]/article/h5/a
|
|
115
|
+
LINK "Claudette Colvin, who refused to move seats on ..." @ref:111 /article/aside[2]/section[1]/article/h4/a
|
|
116
|
+
LINK "scott adams dilbert dies" @ref:112 /section#main-section/article/aside[2]/section[1]/article/a
|
|
117
|
+
LINK "Obituaries" @ref:113 /article/aside[2]/section[1]/article/h5/a
|
|
118
|
+
LINK "Scott Adams, the controversial cartoonist behin..." @ref:114 /article/aside[2]/section[1]/article/h4/a
|
|
119
|
+
LINK "bob weir grateful dead obituary" @ref:115 /section#main-section/article/aside[2]/section[1]/article/a
|
|
120
|
+
LINK "Obituaries" @ref:116 /article/aside[2]/section[1]/article/h5/a
|
|
121
|
+
LINK "Bob Weir, guitarist and founding member of the ..." @ref:117 /article/aside[2]/section[1]/article/h4/a
|
|
122
|
+
LINK "cia turncoat aldrich ames dies at 84" @ref:118 /section#main-section/article/aside[2]/section[1]/article/a
|
|
123
|
+
LINK "Obituaries" @ref:119 /article/aside[2]/section[1]/article/h5/a
|
|
124
|
+
LINK "CIA turncoat Aldrich Ames, who sold U.S. secret..." @ref:120 /article/aside[2]/section[1]/article/h4/a
|
|
125
|
+
LINK "bela tarr filmmaker dead" @ref:121 /section#main-section/article/aside[2]/section[1]/article/a
|
|
126
|
+
LINK "Obituaries" @ref:122 /article/aside[2]/section[1]/article/h5/a
|
|
127
|
+
LINK "Hungarian filmmaker Béla Tarr — known for bleak..." @ref:123 /article/aside[2]/section[1]/article/h4/a
|
|
128
|
+
LINK "edith renfrow smith pioneer and witness to hist..." @ref:124 /section#main-section/article/aside[2]/section[1]/article/a
|
|
129
|
+
LINK "Obituaries" @ref:125 /article/aside[2]/section[1]/article/h5/a
|
|
130
|
+
LINK "Edith Renfrow Smith, pioneer and witness to his..." @ref:126 /article/aside[2]/section[1]/article/h4/a
|
|
131
|
+
LINK "trump post online minnesota social media ice" @ref:127 /section#main-section/article/aside[2]/section[2]/article/a
|
|
132
|
+
LINK "Politics" @ref:128 /article/aside[2]/section[2]/article/h5/a
|
|
133
|
+
LINK "Minnesota shows what happens when governing and..." @ref:129 /article/aside[2]/section[2]/article/h4/a
|
|
134
|
+
LINK "jan 6 house gop capitol trump" @ref:130 /section#main-section/article/aside[2]/section[2]/article/a
|
|
135
|
+
LINK "Investigations" @ref:131 /article/aside[2]/section[2]/article/h5/a
|
|
136
|
+
LINK "House Republicans are investigating Jan. 6. NPR..." @ref:132 /article/aside[2]/section[2]/article/h4/a
|
|
137
|
+
LINK "a knight of the seven kingdoms review hbo game ..." @ref:133 /section#main-section/article/aside[2]/section[2]/article/a
|
|
138
|
+
LINK "Pop Culture Happy Hour" @ref:134 /article/aside[2]/section[2]/article/h5/a
|
|
139
|
+
LINK "'A Knight of the Seven Kingdoms' is 'Game of Th..." @ref:135 /article/aside[2]/section[2]/article/h4/a
|
|
140
|
+
LINK "minneapolis insurrection act trump threats" @ref:136 /section#main-section/article/aside[2]/section[2]/article/a
|
|
141
|
+
LINK "Explainer" @ref:137 /article/aside[2]/section[2]/article/h5/a
|
|
142
|
+
LINK "Trump threatened to invoke the Insurrection Act..." @ref:138 /article/aside[2]/section[2]/article/h4/a
|
|
143
|
+
LINK "verizon outage what happened" @ref:139 /section#main-section/article/aside[2]/section[2]/article/a
|
|
144
|
+
LINK "Business" @ref:140 /article/aside[2]/section[2]/article/h5/a
|
|
145
|
+
LINK "Verizon just had a big outage. Here's what we know" @ref:141 /article/aside[2]/section[2]/article/h4/a
|
|
146
|
+
LINK "up first newsletter minneapolis protests venezu..." @ref:142 /section#main-section/article/aside[2]/section[2]/article/a
|
|
147
|
+
LINK "Up First Newsletter" @ref:143 /article/aside[2]/section[2]/article/h5/a
|
|
148
|
+
LINK "Trump threatens military action in Minneapolis...." @ref:144 /article/aside[2]/section[2]/article/h4/a
|
|
149
|
+
LINK "trumprx pharma drug price deals list prices" @ref:145 /section#main-section/article/aside[2]/section[3]/article/a
|
|
150
|
+
LINK "Health" @ref:146 /article/aside[2]/section[3]/article/h5/a
|
|
151
|
+
LINK "Trump struck deals with 16 drug companies. But ..." @ref:147 /article/aside[2]/section[3]/article/h4/a
|
|
152
|
+
LINK "hospice cervical cancer prevention" @ref:148 /section#main-section/article/aside[2]/section[3]/article/a
|
|
153
|
+
LINK "Global Health" @ref:149 /article/aside[2]/section[3]/article/h5/a
|
|
154
|
+
LINK "This hospice has a bold new mission: saving lives" @ref:150 /article/aside[2]/section[3]/article/h4/a
|
|
155
|
+
LINK "canada cut tariff chinese evs canadian farm pro..." @ref:151 /section#main-section/article/aside[2]/section[3]/article/a
|
|
156
|
+
LINK "Business" @ref:152 /article/aside[2]/section[3]/article/h5/a
|
|
157
|
+
LINK "Canada agrees to cut tariff on Chinese EVs in r..." @ref:153 /article/aside[2]/section[3]/article/h4/a
|
|
158
|
+
LINK "greenland denmark nasa grok star trek golden gl..." @ref:154 /section#main-section/article/aside[2]/section[3]/article/a
|
|
159
|
+
LINK "The NPR news quiz" @ref:155 /article/aside[2]/section[3]/article/h5/a
|
|
160
|
+
LINK "What do eggs, Grok and Greenland have in common..." @ref:156 /article/aside[2]/section[3]/article/h4/a
|
|
161
|
+
LINK "immigration minnesota democrats navigate resist..." @ref:157 /section#main-section/article/aside[2]/section[3]/article/a
|
|
162
|
+
LINK "Politics" @ref:158 /article/aside[2]/section[3]/article/h5/a
|
|
163
|
+
LINK "With limited political power, Minnesota Democra..." @ref:159 /article/aside[2]/section[3]/article/h4/a
|
|
164
|
+
LINK "fema cuts jobs trump" @ref:160 /section#main-section/article/aside[2]/section[3]/article/a
|
|
165
|
+
LINK "Climate" @ref:161 /article/aside[2]/section[3]/article/h5/a
|
|
166
|
+
LINK "FEMA is getting rid of thousands of workers in ..." @ref:162 /article/aside[2]/section[3]/article/h4/a
|
|
167
|
+
LINK "Home" @ref:163 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[1]/a
|
|
168
|
+
LINK "News" @ref:164 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[2]/a
|
|
169
|
+
LINK "Culture" @ref:165 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[3]/a
|
|
170
|
+
LINK "Music" @ref:166 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[4]/a
|
|
171
|
+
LINK "Podcasts & Shows" @ref:167 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[5]/a
|
|
172
|
+
LINK "Newsletters" @ref:168 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[1]/a
|
|
173
|
+
LINK "Facebook" @ref:169 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[2]/a
|
|
174
|
+
LINK "Instagram" @ref:170 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[3]/a
|
|
175
|
+
LINK "Press" @ref:171 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[4]/a
|
|
176
|
+
LINK "Public Editor" @ref:172 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[5]/a
|
|
177
|
+
LINK "Corrections" @ref:173 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[6]/a
|
|
178
|
+
LINK "Transcripts" @ref:174 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[7]/a
|
|
179
|
+
LINK "Contact & Help" @ref:175 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[8]/a
|
|
180
|
+
LINK "Overview" @ref:176 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[1]/a
|
|
181
|
+
LINK "Diversity" @ref:177 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[2]/a
|
|
182
|
+
LINK "NPR Network" @ref:178 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[3]/a
|
|
183
|
+
LINK "Accessibility" @ref:179 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[4]/a
|
|
184
|
+
LINK "Ethics" @ref:180 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[5]/a
|
|
185
|
+
LINK "Finances" @ref:181 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[6]/a
|
|
186
|
+
LINK "Support Public Radio" @ref:182 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[1]/a
|
|
187
|
+
LINK "Sponsor NPR" @ref:183 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[2]/a
|
|
188
|
+
LINK "NPR Careers" @ref:184 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[3]/a
|
|
189
|
+
LINK "NPR Shop" @ref:185 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[4]/a
|
|
190
|
+
LINK "NPR Extra" @ref:186 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[5]/a
|
|
191
|
+
LINK "Terms of Use" @ref:187 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[1]/a
|
|
192
|
+
LINK "Privacy" @ref:188 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[2]/a
|
|
193
|
+
LINK "Your Privacy Choices" @ref:189 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[3]/a
|
|
194
|
+
LINK "Text Only" @ref:190 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[4]/a
|
|
195
|
+
LINK "Become an NPR sponsor" @ref:191 /main/div#wrapper[2]/div#main-sidebar/aside#ad-standard-wrap/a
|
|
196
|
+
LINK "Get NPR+" @ref:192 /main/section[2]/a
|
|
197
|
+
LINK "Sign In" @ref:193 /main/section[2]/a
|
|
198
|
+
BUTTON "Close modal" @ref:194 /main/section[2]/button#npr-plus-access__close
|
|
199
|
+
BUTTON "Cookies Settings" @ref:195 /div#onetrust-consent-sdk[5]/div#onetrust-banner-sdk[2]/div#onetrust-button-group-parent[2]/div#onetrust-button-group/button#onetrust-pc-btn-handler[1]
|
|
200
|
+
BUTTON "Accept All Cookies" @ref:196 /div#onetrust-consent-sdk[5]/div#onetrust-banner-sdk[2]/div#onetrust-button-group-parent[2]/div#onetrust-button-group/button#onetrust-accept-btn-handler[2]
|
|
201
|
+
BUTTON "Close" @ref:197 /div#onetrust-consent-sdk[5]/div#onetrust-banner-sdk[2]/div#onetrust-close-btn-container[2]/button
|
|
202
|
+
BUTTON "Close preference center" @ref:198 /div#onetrust-consent-sdk[5]/div#onetrust-pc-sdk[3]/button#close-pc-btn-handler
|
|
203
|
+
BUTTON "Allow All" @ref:199 /div#onetrust-consent-sdk[5]/div#onetrust-pc-sdk[3]/div#ot-pc-content[2]/button
|
|
204
|
+
BUTTON "Strictly Necessary or Essential Cookies Always ..." @ref:200 /div#onetrust-consent-sdk[5]/div#onetrust-pc-sdk[3]/div#ot-pc-content[2]/section/button
|
|
205
|
+
BUTTON "Performance and Analytics Cookies" @ref:201 /div#onetrust-consent-sdk[5]/div#onetrust-pc-sdk[3]/div#ot-pc-content[2]/section/button
|
|
206
|
+
SWITCH "Performance and Analytics Cookies" @ref:202 [type=checkbox] (checked) /div#onetrust-consent-sdk[5]/div#onetrust-pc-sdk[3]/div#ot-pc-content[2]/section/input#ot-group-id-C0002
|
|
207
|
+
BUTTON "Functional Cookies" @ref:203 /div#onetrust-consent-sdk[5]/div#onetrust-pc-sdk[3]/div#ot-pc-content[2]/section/button
|
|
208
|
+
SWITCH "Functional Cookies" @ref:204 [type=checkbox] (checked) /div#onetrust-consent-sdk[5]/div#onetrust-pc-sdk[3]/div#ot-pc-content[2]/section/input#ot-group-id-C0003
|
|
209
|
+
BUTTON "Targeting and Sponsor Cookies" @ref:205 /div#onetrust-consent-sdk[5]/div#onetrust-pc-sdk[3]/div#ot-pc-content[2]/section/button
|
|
210
|
+
SWITCH "Targeting and Sponsor Cookies" @ref:206 [type=checkbox] (checked) /div#onetrust-consent-sdk[5]/div#onetrust-pc-sdk[3]/div#ot-pc-content[2]/section/input#ot-group-id-C0004
|
|
211
|
+
BUTTON "Back" @ref:207 /div#onetrust-consent-sdk[5]/div#onetrust-pc-sdk[3]/section#ot-pc-lst/div#ot-pc-hdr/div#ot-lst-title[1]/button
|
|
212
|
+
TEXTBOX "Cookie list search" @ref:208 /div#onetrust-consent-sdk[5]/div#onetrust-pc-sdk[3]/section#ot-pc-lst/div#ot-pc-hdr/input#vendor-search-handler
|
|
213
|
+
BUTTON "Filter" @ref:209 /div#onetrust-consent-sdk[5]/div#onetrust-pc-sdk[3]/section#ot-pc-lst/div#ot-pc-hdr/button#filter-btn-handler
|
|
214
|
+
BUTTON "Clear" @ref:210 /div#onetrust-pc-sdk[3]/section#ot-pc-lst/div#ot-pc-hdr/section#ot-fltr-modal/div#ot-fltr-cnt/button#clear-filters-handler
|
|
215
|
+
CHECKBOX "checkbox label" @ref:211 [type=checkbox] /div#onetrust-pc-sdk[3]/section#ot-pc-lst/div#ot-pc-hdr/section#ot-fltr-modal/div#ot-fltr-cnt/input#chkbox-id
|
|
216
|
+
BUTTON "Apply" @ref:212 /div#onetrust-pc-sdk[3]/section#ot-pc-lst/div#ot-pc-hdr/section#ot-fltr-modal/div#ot-fltr-cnt/button#filter-apply-handler[1]
|
|
217
|
+
BUTTON "Cancel" @ref:213 /div#onetrust-pc-sdk[3]/section#ot-pc-lst/div#ot-pc-hdr/section#ot-fltr-modal/div#ot-fltr-cnt/button#filter-cancel-handler[2]
|
|
218
|
+
CHECKBOX "checkbox label" @ref:214 [type=checkbox] /div#onetrust-pc-sdk[3]/section#ot-pc-lst/section#ot-lst-cnt/div#ot-sel-blk[1]/div#ot-selall-hostcntr[1]/input
|
|
219
|
+
CHECKBOX "checkbox label" @ref:215 [type=checkbox] /div#onetrust-pc-sdk[3]/section#ot-pc-lst/section#ot-lst-cnt/div#ot-sel-blk[1]/div#ot-selall-vencntr[2]/input
|
|
220
|
+
CHECKBOX "checkbox label" @ref:216 [type=checkbox] /div#onetrust-pc-sdk[3]/section#ot-pc-lst/section#ot-lst-cnt/div#ot-sel-blk[1]/div#ot-selall-licntr[3]/input#select-all-vendor-leg-handler
|
|
221
|
+
BUTTON "Reject All" @ref:217 /div#onetrust-consent-sdk[5]/div#onetrust-pc-sdk[3]/button[1]
|
|
222
|
+
BUTTON "Confirm My Choices" @ref:218 /div#onetrust-consent-sdk[5]/div#onetrust-pc-sdk[3]/button[2]
|
|
223
|
+
LINK "Powered by OneTrust Opens in a new Tab" @ref:219 /div#onetrust-consent-sdk[5]/div#onetrust-pc-sdk[3]/a
|
|
224
|
+
TEXTBOX @ref:220 /textarea#g-recaptcha-response-100000
|