-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
24 lines (23 loc) · 932 Bytes
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
* Use this file to install your script as a Chrome extension.
*
* 1. Place this file in the same directory as your user script.
* 2. Update "description" and "name" below.
* 3. Remove any existing CS255 user scripts from Chrome's extension panel.
* 4. Install your project directory as an unpacked extension: http://developer.chrome.com/extensions/getstarted.html#unpacked
* This has the added benefit that you can test updates to your code simply by saving your code and refreshing the Chrome extensions page.
*
*/
{
"content_scripts": [ {
"js": ["cryptopost.js" ],
"matches": [ "http://*/*", "https://*/*" ],
"run_at": "document_idle"
} ],
"permissions": ["storage", "http://www.facebook.com/*", "https://www.facebook.com/*"],
"converted_from_user_script": true,
"description": "AES Encryption for Facebook Groups",
"name": "CryptoPost",
"version": "1.6",
"manifest_version": 2
}