26 lines
636 B
JSON
Executable File
26 lines
636 B
JSON
Executable File
{
|
|
"content_scripts": [
|
|
{
|
|
"js": ["js/spatial-navigation.js"],
|
|
"matches": ["<all_urls>"],
|
|
"run_at": "document_end"
|
|
}
|
|
],
|
|
"background": {
|
|
"service_worker": "js/background.js"
|
|
},
|
|
"icons": {
|
|
"16": "img/icon16.png",
|
|
"32": "img/icon32.png",
|
|
"64": "img/icon64.png"
|
|
},
|
|
"description": "Smart Spatial Navigation extension with key map to links. Binds WASD and Q/E/F keys.",
|
|
"manifest_version": 3,
|
|
"name": "Spatial Navigation",
|
|
"permissions": ["storage"],
|
|
"host_permissions": ["<all_urls>"],
|
|
"short_name": "spatial-navigation",
|
|
"version": "0.5",
|
|
"options_page": "options.html"
|
|
}
|