mirror of
https://gitee.com/bitdance-team/chrome-extension
synced 2025-10-08 00:45:13 +08:00
番茄钟初始界面
This commit is contained in:
29
gitee_pomodoro/manifest.json
Normal file
29
gitee_pomodoro/manifest.json
Normal file
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"name":"助手-pomodoro",
|
||||
"description":"manage your time",
|
||||
"version":"0.1",
|
||||
"manifest_version":3,
|
||||
"background":{
|
||||
"service_worker":"./assets/js/background.js"
|
||||
},
|
||||
"options_page": "./assets/html/options.html",
|
||||
"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"]
|
||||
}]
|
||||
|
||||
}
|
Reference in New Issue
Block a user