socurity/extension/manifest.json

25 lines
528 B
JSON
Raw Normal View History

2020-02-26 21:03:04 -05:00
{
"manifest_version": 2,
"name": "Socurity",
"description": "SOC-URITY",
"version": "1.0",
2020-02-26 21:22:06 -05:00
"icons": {
"16": "icons/padlock-16.png",
"24": "icons/padlock-24.png",
"32": "icons/padlock-32.png",
"64": "icons/padlock-64.png",
"128": "icons/padlock-128.png",
"256": "icons/padlock-256.png",
"512": "icons/padlock-512.png"
2020-02-27 16:10:33 -05:00
},
2020-02-26 21:03:04 -05:00
"browser_action":{
2020-02-26 21:22:06 -05:00
"default_icon": "icons/padlock-32.png",
2020-02-26 21:03:04 -05:00
"default_popup": "popup.html"
2020-02-27 16:10:33 -05:00
},
"content_scripts": [
{
"matches": [ "*://*/*" ],
"js": [ "socurity.js" ]
}
]
2020-02-26 21:03:04 -05:00
}