pixelpick 2.0.2 → 2.0.3
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/README.md +5 -4
- package/dist/chrome-mv3/manifest.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -185,10 +185,11 @@ This is expected. React 19 removed `_debugSource` metadata. PixelPick will fall
|
|
|
185
185
|
|
|
186
186
|
PixelPick only runs on **localhost** (127.0.0.1 and localhost). It will never activate on production websites.
|
|
187
187
|
|
|
188
|
-
The Chrome extension
|
|
189
|
-
- `
|
|
190
|
-
- `
|
|
191
|
-
|
|
188
|
+
The Chrome extension requests only two permissions:
|
|
189
|
+
- `alarms`: Keep WebSocket alive (MV3 service workers suspend)
|
|
190
|
+
- `sidePanel`: Display selection list in Chrome's side panel
|
|
191
|
+
|
|
192
|
+
Content scripts are declared in the manifest and only match `localhost` and `127.0.0.1`.
|
|
192
193
|
|
|
193
194
|
No data is sent to external servers. Everything runs locally. See [PRIVACY.md](PRIVACY.md) for the full privacy policy.
|
|
194
195
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"manifest_version":3,"name":"PixelPick","description":"Select UI elements and send context to Claude Code","version":"2.0.0","icons":{"16":"icon/16.png","48":"icon/48.png","128":"icon/128.png"},"permissions":["
|
|
1
|
+
{"manifest_version":3,"name":"PixelPick","description":"Select UI elements and send context to Claude Code","version":"2.0.0","icons":{"16":"icon/16.png","48":"icon/48.png","128":"icon/128.png"},"permissions":["alarms","sidePanel"],"host_permissions":["http://localhost/*","http://127.0.0.1/*"],"action":{"default_title":"Open PixelPick","default_icon":{"16":"icon/16.png","48":"icon/48.png","128":"icon/128.png"}},"side_panel":{"default_path":"sidepanel.html"},"minimum_chrome_version":"116","content_security_policy":{"extension_pages":"script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"},"web_accessible_resources":[{"resources":["src/inspector/index.js","src/inspector/dom-inspector.js","src/inspector/react-detector.js","src/inspector/picker.js","src/inspector/highlight.js","src/constants.js"],"matches":["http://localhost/*","http://127.0.0.1/*"]}],"background":{"service_worker":"background.js"},"content_scripts":[{"matches":["http://127.0.0.1/*","http://localhost/*"],"run_at":"document_start","js":["content-scripts/content.js"]}]}
|