Pail/manifest.json

26 lines
603 B
JSON

{
"name": "Old Reddit Redirect",
"description": "Ensure Reddit always loads the old design",
"version": "1.5.0",
"manifest_version": 2,
"background": { "scripts": ["background.js"] },
"icons": {
"48": "img/icon48.png",
"128": "img/icon128.png"
},
"content_scripts": [{
"matches": [ "*://old.reddit.com/*" ],
"css": [ "styles.css" ],
"run_at": "document_start"
}],
"permissions": [
"webRequest",
"webRequestBlocking",
"*://reddit.com/*",
"*://www.reddit.com/*",
"*://np.reddit.com/*",
"*://amp.reddit.com/*",
"*://i.reddit.com/*"
]
}