Inspect and view changes in Re-Nav 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
{
"name": "Re-Nav",
"description": "Navigation redirects for the masses.",
"version": "0.3.0",
"permissions": [
"contextMenus",
"storage",
"tabs",
"webNavigation"
],
"options_ui": {
"page": "options/index.html",
"open_in_tab": true
},
"commands": {
"toggleAllRedirects": {
"description": "Toggle all redirects, this does the same as the extension icon's right-click option.",
"suggested_key": {
"default": "Alt+Shift+R"
}
}
},
"content_scripts": [
{
"css": [
"content-scripts/share/style.css"
],
"js": [
"content-scripts/share/share.js"
],
"matches": [
"https://holllo.org/re-nav/share/"
],
"run_at": "document_end"
}
],
"icons": {
"128": "assets/re-nav.png"
},
"manifest_version": 3,
"action": {
"default_icon": {
"128": "assets/re-nav.png"
}
},
"background": {
"service_worker": "background-scripts/initialize.js",
"type": "module"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}