Advertisement
wojaovlad

manifest.json redirect

Sep 17th, 2016
268
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.58 KB | None | 0 0
  1. {
  2.   "name": "The Pirate Bay_2",
  3.   "description": "Redirect The Pirate Bay to a different host",
  4.   "version": "1.0",
  5.   "manifest_version": 2,
  6.  
  7.   "browser_action": {
  8.         "default_title": "Saving Studio generator",
  9.         "default_popup": "popup.html"
  10.  
  11.     },
  12.     "background": {"scripts":["redirect.js"]},
  13.     "content_scripts": [
  14.    {
  15.      "matches": ["http://*/*", "https://*/*"],
  16.      "js": ["background.js"]
  17.    }
  18.    ],
  19.   "permissions":
  20.   [
  21.     "webRequest",
  22.     "https://www.amazon.com/",
  23.     "webRequestBlocking",
  24.     "tabs",
  25.     "activeTab"
  26.     ]
  27.  
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement