Inspect and view changes in Num 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
{
"manifest_version": 3,
"name": "Num Nav",
"version": "1.0.2",
"description": "Redirects numbers to a custom URL",
"icons": {
"16": "nnn-16.png",
"48": "nnn-48.png",
"128": "nnn-128.png"
},
"background": {
"service_worker": "background.js"
},
"commands": {
"toggle-feature": {
"suggested_key": {
"default": "Alt+N"
},
"description": "Toggle Num Nav on/off"
}
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"action": {
"default_popup": "index.html",
"default_icon": "nnn-128.png"
},
"permissions": [
"activeTab",
"storage",
"webNavigation"
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}