1234567891011121314151617181920212223242526 |
- {
- "manifest_version": 3,
- "name": "DeNet",
- "description": "chrome extension",
- "version": "0.0.1",
- "background": {
- "service_worker": "/js/background.js"
- },
- "action": {
- "default_popup": "popup.html"
- },
- "content_scripts": [
- {
- "matches": [
- "<all_urls>"
- ],
- "js": [
- "/js/content.js"
- ],
- "css": [
- "/js/content.css"
- ]
- }
- ],
- "options_page": "options.html"
- }
|