Skip to content

Commit

Permalink
Edge manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
alanhamlett committed Aug 21, 2023
1 parent 720211f commit 4c8fee9
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions src/manifests/edge.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"action": {
"default_icon": {
"19": "graphics/wakatime-logo-19.png",
"38": "graphics/wakatime-logo-38.png"
},
"default_popup": "popup.html",
"default_title": "WakaTime"
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["wakatimeScript.js"],
"run_at": "document_end"
}
],
"description": "Automatic time tracking for Edge.",
"devtools_page": "devtools.html",
"homepage_url": "https://wakatime.com",
"host_permissions": ["https://api.wakatime.com/*", "https://wakatime.com/*"],
"icons": {
"16": "graphics/wakatime-logo-16.png",
"48": "graphics/wakatime-logo-48.png",
"128": "graphics/wakatime-logo-128.png"
},
"manifest_version": 3,
"name": "WakaTime",
"options_ui": {
"page": "options.html"
},
"permissions": ["alarms", "tabs", "storage", "idle"],
"version": "3.0.18"
}

0 comments on commit 4c8fee9

Please sign in to comment.