12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- {
- "manifest_version": 3,
- "name": "DeNet",
- "description": "Growing more twitter followers with Denet",
- "version": "1.0.2",
- "background": {
- "service_worker": "/js/background.js"
- },
- "icons": {
- "16": "/logo/16.png",
- "32": "/logo/32.png",
- "48": "/logo/48.png",
- "128": "/logo/128.png"
- },
- "action": {
- "default_popup": "popup.html"
- },
- "content_scripts": [
- {
- "matches": [
- "https://*.twitter.com/*",
- "https://twitter.com/*"
- ],
- "run_at": "document_start",
- "js": [
- "/js/content.js"
- ]
- }
- ],
- "host_permissions": [
- "*://*.twitter.com/*",
- "*://twitter.com/*",
- "*://testh5.denetme.net/*",
- "*://h5.denetme.net/*",
- "*://preh5.denetme.net/*"
- ],
- "permissions": [
- "tabs",
- "action",
- "cookies",
- "activeTab",
- "scripting",
- "storage"
- ],
- "options_page": "options.html",
- "web_accessible_resources": [
- {
- "resources": [
- "/iframe/publish.html",
- "/iframe/red-packet.html",
- "/iframe/home.html"
- ],
- "matches": [
- "<all_urls>"
- ]
- }
- ]
- }
|