2021-03-08 11:08:06 -05:00
|
|
|
{
|
2021-03-10 02:52:55 -05:00
|
|
|
"content_scripts": [
|
|
|
|
{
|
|
|
|
"js": ["js/spatial-navigation.js"],
|
2022-10-19 00:30:54 -04:00
|
|
|
"matches": ["<all_urls>"],
|
2021-03-08 11:08:06 -05:00
|
|
|
"run_at": "document_end"
|
2021-03-10 02:52:18 -05:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"background": {
|
2022-10-19 00:31:32 -04:00
|
|
|
"service_worker": "js/background.js"
|
2021-03-10 02:52:18 -05:00
|
|
|
},
|
|
|
|
"icons": {
|
2023-06-08 11:49:02 -04:00
|
|
|
"16": "img/icon16.png",
|
|
|
|
"32": "img/icon32.png",
|
|
|
|
"64": "img/icon64.png"
|
2021-03-10 02:52:18 -05:00
|
|
|
},
|
2023-06-08 11:49:02 -04:00
|
|
|
"description": "Smart Spatial Navigation extension with key map to links. Binds WASD and Q/E/F keys.",
|
2022-10-19 00:31:32 -04:00
|
|
|
"manifest_version": 3,
|
2021-03-10 02:52:18 -05:00
|
|
|
"name": "Spatial Navigation",
|
2022-10-19 00:31:32 -04:00
|
|
|
"permissions": ["storage"],
|
|
|
|
"host_permissions": ["<all_urls>"],
|
2021-03-10 02:52:18 -05:00
|
|
|
"short_name": "spatial-navigation",
|
2023-06-08 11:49:02 -04:00
|
|
|
"version": "0.5",
|
2021-03-10 02:49:21 -05:00
|
|
|
"options_page": "options.html"
|
2021-03-08 11:08:06 -05:00
|
|
|
}
|