1
0
mirror of https://gitee.com/bitdance-team/chrome-extension synced 2025-10-08 00:45:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
Files
chrome-extension/gitee_pomodoro/manifest.json
2022-02-03 20:46:59 +08:00

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"]
}]
}