mirror of
https://github.com/XFox111/PasswordGeneratorExtension.git
synced 2026-04-22 08:08:01 +03:00
Version 1.0 (initial commit)
This commit is contained in:
@@ -0,0 +1,53 @@
|
||||
{
|
||||
"name": "__MSG_name__",
|
||||
"version": "1.0",
|
||||
"manifest_version": 2,
|
||||
"description": "__MSG_description__",
|
||||
"author": "__MSG_author__",
|
||||
"default_locale": "en",
|
||||
|
||||
"permissions":
|
||||
[
|
||||
"storage",
|
||||
"<all_urls>",
|
||||
"contextMenus",
|
||||
"clipboardWrite"
|
||||
],
|
||||
|
||||
"content_scripts":
|
||||
[
|
||||
{
|
||||
"matches": [ "<all_urls>" ],
|
||||
"js": [ "js/script.js" ],
|
||||
"run_at": "document_idle",
|
||||
"all_frames": true
|
||||
}
|
||||
],
|
||||
"background":
|
||||
{
|
||||
"scripts": [ "js/background.js", "js/script.js" ],
|
||||
"persistent": false
|
||||
},
|
||||
|
||||
"icons":
|
||||
{
|
||||
"128": "icons/icon-128.png",
|
||||
"48": "icons/icon-48.png",
|
||||
"32": "icons/icon-32.png",
|
||||
"16": "icons/icon-16.png"
|
||||
},
|
||||
"browser_action":
|
||||
{
|
||||
"default_icon": "icons/icon-32.png",
|
||||
"default_popup": "options.html"
|
||||
},
|
||||
|
||||
"browser_specific_settings":
|
||||
{
|
||||
"gecko":
|
||||
{
|
||||
"id": "passwordgenerator@xfox111.net",
|
||||
"strict_min_version": "58.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user