A fork of https://github.com/ueokande/vim-vixen
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
988 B
52 lines
988 B
{ |
|
"manifest_version": 2, |
|
"name": "Vim Vixen", |
|
"description": "Vim Vixen", |
|
"version": "0.22", |
|
"icons": { |
|
"48": "resources/icon_48x48.png", |
|
"96": "resources/icon_96x96.png" |
|
}, |
|
"applications": { |
|
"gecko": { |
|
"id": "vim-vixen@i-beam.org" |
|
} |
|
}, |
|
"content_scripts": [ |
|
{ |
|
"all_frames": true, |
|
"matches": [ "<all_urls>" ], |
|
"js": [ "build/content.js" ], |
|
"run_at": "document_end", |
|
"match_about_blank": true |
|
} |
|
], |
|
"background": { |
|
"scripts": [ |
|
"build/background.js" |
|
] |
|
}, |
|
"permissions": [ |
|
"history", |
|
"sessions", |
|
"storage", |
|
"tabs", |
|
"clipboardRead", |
|
"notifications", |
|
"bookmarks", |
|
"browserSettings" |
|
], |
|
"web_accessible_resources": [ |
|
"build/console.html", |
|
"build/console.js" |
|
], |
|
"options_ui": { |
|
"page": "build/settings.html" |
|
}, |
|
"browser_action": { |
|
"default_icon": { |
|
"32": "resources/enabled_32x32.png" |
|
}, |
|
"default_title": "Vim Vixen" |
|
} |
|
}
|
|
|