mirror of
https://gitee.com/bitdance-team/chrome-extension
synced 2025-10-07 16:35:15 +08:00
28 lines
776 B
JSON
28 lines
776 B
JSON
{
|
|
"name":"助手-pomodoro",
|
|
"description":"manage your time",
|
|
"version":"0.3",
|
|
"manifest_version":3,
|
|
"background":{
|
|
"service_worker":"background.js"
|
|
},
|
|
"permissions":["storage","activeTab", "scripting","notifications","alarms", "contextMenus"],
|
|
"action":{
|
|
"default_popup":"popup.html",
|
|
"default_icon":{
|
|
"16": "./images/pomo_16.png",
|
|
"48": "./images/pomo_48.png",
|
|
"128": "./images/pomo_128.png"
|
|
}
|
|
},
|
|
"icons": {
|
|
"16": "./images/pomo_16.png",
|
|
"48": "./images/pomo_48.png",
|
|
"128": "./images/pomo_128.png"
|
|
},
|
|
"content_scripts":[{
|
|
"matches":["https://*/*","http://*/*"],
|
|
"js":["./assets/js/common/jquery.min.js"]
|
|
}]
|
|
|
|
} |