Inspect and view changes in Link redirector for Youtube links 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": "Link redirector: Youtube to Invidious",
"version": "1.0",
"author": "Stuart MacDonald",
"description": "This extension will take clicked on or url entered youtube.com and youtu.be links and redirect the links to a domain of your choosing.\n\nThis extension is intended to be used with Invidious and other similar services",
"icons": {
"48": "icons/icon-48.png",
"96": "icons/icon-96.png"
},
"permissions": [
"webRequest",
"webRequestBlocking",
"storage",
"*://*.youtube.com/*",
"*://youtu.be/*"
],
"background": {
"scripts": [
"background.js"
]
},
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"browser_specific_settings": {
"gecko": {
"id": "redirector@example.com"
}
}
}