keyhinter/manifest.json

40 lines
806 B
JSON

{
"manifest_version": 2,
"name": "KeyHinter",
"description": "This extension lets the user follow links with just the keyboard",
"version": "0.1.0",
"background": {
"scripts": ["background.js"],
"persistent": false
},
"content_scripts": [
{
"matches": [
"https://*/*"
],
"exclude_matches": [
"https://mail.google.com/*"
],
"js": ["keyhinter.js"],
"css": ["keyhinter.css"]
}
],
"commands": {
"start": {
"suggested_key": {
"default": "Ctrl+I"
},
"description": "Start keyhinter"
}
},
"permissions": [
"commands",
"nativeMessaging"
]
}