Inspect and view changes in reddirect-new source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "reddirect",
"version": "0.4",
"description": "Redirects the current post into a desired version of the Reddit site",
"icons": {
"16": "icon/reddirect.svg",
"32": "icon/reddirect.svg",
"48": "icon/reddirect.svg",
"64": "icon/reddirect.svg",
"96": "icon/reddirect.svg"
},
"browser_action": {
"default_icon": "icon/reddirect.svg",
"default_title": "Reddirect",
"default_popup": "popup/choose_version.html"
},
"content_scripts": [
{
"js": [
"content_scripts/reddirect.js"
],
"matches": [
"*://old.reddit.com/*",
"*://www.reddit.com/*",
"*://i.reddit.com/*",
"*://np.reddit.com/*"
]
}
],
"permissions": [
"activeTab",
"tabs"
]
}