mirror of
https://github.com/taigrr/searchBGon
synced 2025-01-18 05:03:12 -08:00
35 lines
709 B
JSON
35 lines
709 B
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "Close Search Tabs",
|
|
"description": "Closes all Google Search tabs when clicked to free up tabs and save your sanity.",
|
|
"short_name":"SearchBGon",
|
|
"author": "Tai Groot",
|
|
"version": "3.0.1",
|
|
"browser_action": {
|
|
"default_icon": "static/icon.png"
|
|
},
|
|
"background": {
|
|
"scripts": [
|
|
"background.js"
|
|
]
|
|
},
|
|
"permissions": [
|
|
"tabs",
|
|
"<all_urls>"
|
|
],
|
|
"commands":{
|
|
"_execute_browser_action":{
|
|
"suggested_key":{
|
|
"default": "Ctrl+Shift+Z"
|
|
}
|
|
}
|
|
},
|
|
"icons": {
|
|
"16": "static/icon-16.png",
|
|
"32": "static/icon-32.png",
|
|
"48": "static/icon-48.png",
|
|
"64": "static/icon-64.png",
|
|
"128": "static/icon-128.png"
|
|
}
|
|
}
|