mirror of
https://github.com/huhu/rust-search-extension
synced 2024-11-15 08:07:08 +00:00
37 lines
No EOL
824 B
JSON
37 lines
No EOL
824 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)"
|
|
},
|
|
"omnibox": {
|
|
"keyword": "rs"
|
|
},
|
|
"background": {
|
|
"scripts": [
|
|
"settings.js",
|
|
"search.js",
|
|
"search-index.js",
|
|
"crate-search.js",
|
|
"crates-index.js",
|
|
"omnibox.js",
|
|
"main.js"
|
|
]
|
|
},
|
|
"permissions": [
|
|
"tabs"
|
|
]
|
|
} |