1
0
mirror of https://github.com/S2-/ping.git synced 2025-08-02 20:30:05 +02:00

initial draft

This commit is contained in:
s2
2019-03-18 14:42:14 +01:00
commit adb84ffd71
18 changed files with 295 additions and 0 deletions

33
src/manifest.json Normal file
View File

@@ -0,0 +1,33 @@
{
"description": "Just a toolbar button that shows if a server is up or not.",
"manifest_version": 2,
"name": "ping",
"version": "1.1.23",
"homepage_url": "https://github.com/S2-/ping",
"applications": {
"gecko": {
"id": "{46b66c4d-605f-4f4d-8689-20b44b45656c}"
}
},
"icons": {
"48": "icons/offline-48.png"
},
"browser_action": {
"default_icon": "icons/offline-32.png",
"theme_icons": [{
"light": "icons/offline-32-light.png",
"dark": "icons/offline-32.png",
"size": 32
}],
"default_title": "ping",
"default_popup": "popup/ping.html"
},
"background": {
"page": "background-page.html"
},
"permissions": [
"storage",
"<all_urls>",
"webRequest"
]
}