{
"background": {
"scripts": ["background.js"]
},
"browser_action": {
"browser_style": true,
"default_icon": "firenvim.svg",
"default_title": "Firenvim",
"default_popup": "browserAction.html"
},
"commands": {
"nvimify": {
"suggested_key": {
"default": "Ctrl+E"
},
"description": "Turn the currently focused element into a neovim iframe."
}
},
"content_scripts": [
{
"all_frames": true,
"js": ["content.js"],
"matches": [
"<all_urls>"
],
"match_about_blank": true,
"run_at": "document_start"
}
],
"description": "PACKAGE_JSON_DESCRIPTION",
"icons": {
"48": "firenvim.svg"
},
"manifest_version": 2,
"name": "Firenvim",
"permissions": ["nativeMessaging", "storage", "tabs"],
"version": "FIRENVIM_VERSION",
"web_accessible_resources": ["NeovimFrame.html"],
BROWSER_SPECIFIC_SETTINGS
}