-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
executable file
·23 lines (23 loc) · 1.13 KB
/
manifest.json
File metadata and controls
executable file
·23 lines (23 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"background": {
"scripts": [ "background.js" ]
},
"browser_action": {
"default_icon": "icon.png"
},
"content_scripts": [ {
"css": [ "alert.css" ],
"js": [ "jquery.min.js", "jquery.cookie.js", "content.js"],
"matches": [ "http://*/*", "https://*/*" ],
"run_at": "document_end"
} ],
"description": "Tells you when you're on a site that stores your passwords in plaintext",
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnxxZbx5z+T6ueMVY/Qf9Ish99QjSvu7s2ko68HFsr8Xf2PNXf5moHSXwY5tcB2GNdcYVzsE79aNECdhsPtGb+jYL0AXL3effssSfkTybmF52KzFQh6Jd6ffyLtJ31ngBSizwvecsgAQvhoJTOqE/+jiQpJjdTDc5YebVqJtGgRbQIjTuhngs4th088bJpX2B7w+AKf9IOiSK16k6AXsQ64JX5cWnTO8uoSTtN0lzNA/K3VzEW0shxNrdIzs7KafAG9NvfzwiCYrYoYzK+q5ObO6N3KhkXyELSQmBW1yG7foB9OdmtziBF0meptDfIIyxfgSvchqgd0bsidiwoP3UcwIDAQAB",
"manifest_version": 2,
"name": "Plain Text Offenders Alert",
"permissions": [ "tabs", "\u003Call_urls>", "storage" ],
"short_name": "PTOAlert",
"update_url": "https://clients2.google.com/service/update2/crx",
"version": "1.7",
"web_accessible_resources": [ "jquery.min.js"]
}