rust-search-extension/extension/manifest.json

38 lines
No EOL
986 B
JSON

{
"manifest_version": 2,
"name": "Rust Search Extension",
"description": "A handy browser extension to search crates and official docs in the address bar (omnibox)",
"version": "0.5",
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"browser_action": {
"default_icon": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"default_popup": "popup.html",
"default_title": "A handy browser extension to search crates and official docs in the address bar (omnibox)"
},
"content_security_policy": "script-src-elem 'self' https://folyd.github.io/rust-search-extension/crates/crates-index.js; script-src 'self'; object-src 'self'",
"omnibox": {
"keyword": "rs"
},
"background": {
"scripts": [
"settings.js",
"search.js",
"search-index.js",
"crate-search.js",
"crates-index.js",
"omnibox.js",
"main.js"
]
},
"permissions": [
"tabs"
]
}