pryscraper/browser-extension/manifest.json
cryptorugmunch 47ba268131 docs: apply fleet-template (16-artifact scaffold)
Adds missing standard artifacts:
- README.md (if missing)
- AGENTS.md (AI agent contract)
- PLAN.md (current sprint)
- STATUS.md (where we are)
- DEVELOPMENT.md (dev workflow)
- DEPLOYMENT.md (deploy procedure)
- TESTING.md (test strategy)
- DECISIONS.md (ADR index + templates)
- .github/CODEOWNERS
- .github/workflows/ci.yml

Preserves all existing artifacts.

Refs: RugMunchMedia/fleet-template
2026-07-02 02:07:13 +07:00

34 lines
796 B
JSON

{
"manifest_version": 3,
"name": "Pry — One-Click Scraper",
"version": "1.0.0",
"description": "Scrape any webpage with one click. Extract prices, products, reviews, and more. Send directly to your workflow.",
"permissions": [
"activeTab",
"storage",
"scripting",
"notifications"
],
"host_permissions": [
"http://localhost:8002/*",
"<all_urls>"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
},
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"options_page": "options.html",
"background": {
"service_worker": "background.js",
"type": "module"
}
}