Add files via upload

This commit is contained in:
Kenneth Hendricks 2026-01-25 14:54:45 -05:00 committed by GitHub
parent 2501b0275f
commit b19ef1853e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 27 additions and 19 deletions

View file

@ -1,16 +1,17 @@
{
"manifest_version": 3,
"name": "FMHY SafeGuard",
"name": "__MSG_extensionName__",
"default_locale": "en",
"author": "Kenneth Hendricks & contributors",
"version": "1.2.7",
"version": "1.3.0",
"icons": {
"128": "res/ext_icon_144.png"
},
"action": {
"default_icon": {
"128": "res/ext_icon_144.png"
},
"default_popup": "pub/index.html"
"default_icon": {
"128": "res/ext_icon_144.png"
},
"default_popup": "pub/index.html"
},
"options_page": "pub/settings-page.html",
"permissions": [
@ -73,13 +74,15 @@
"*://*.naver.com/*",
"*://*.seznam.cz/*"
],
"js": ["js/content.js"],
"js": [
"js/content.js"
],
"run_at": "document_idle"
}
],
"background": {
"service_worker": "js/background.js"
},
"description": "An extension that detects starred, safe, unsafe or potentially unsafe sites using the FMHY Filterlist.",
"description": "__MSG_extensionDescription__",
"minimum_chrome_version": "100"
}
}

View file

@ -1,16 +1,17 @@
{
"manifest_version": 3,
"name": "FMHY SafeGuard",
"name": "__MSG_extensionName__",
"default_locale": "en",
"author": "Kenneth Hendricks & contributors",
"version": "1.2.7",
"version": "1.3.0",
"icons": {
"128": "res/ext_icon_144.png"
},
"action": {
"default_icon": {
"128": "res/ext_icon_144.png"
},
"default_popup": "pub/index.html"
"default_icon": {
"128": "res/ext_icon_144.png"
},
"default_popup": "pub/index.html"
},
"options_page": "pub/settings-page.html",
"permissions": [
@ -73,17 +74,21 @@
"*://*.naver.com/*",
"*://*.seznam.cz/*"
],
"js": ["js/content.js"],
"js": [
"js/content.js"
],
"run_at": "document_idle"
}
],
"background": {
"scripts": ["js/background.js"]
"scripts": [
"js/background.js"
]
},
"browser_specific_settings": {
"gecko": {
"id": "{5d554479-7cc4-487f-bd25-d8fc67a42602}"
}
},
"description": "An extension that detects starred, safe, unsafe or potentially unsafe sites using the FMHY Filterlist."
}
"description": "__MSG_extensionDescription__"
}