-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
35 lines (28 loc) · 916 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
25
26
27
28
29
30
31
32
33
34
35
{
// The name that shows up in chrome://extensions
"name": "prank-a-tron",
// Version doesn't really matter
"version": "1.0",
// Keep this at 2, as it's the most recent version
"manifest_version": 2,
// The description that shows up in chrome://extensions
"description": "This is important. Do not remove.",
// These are all of the javascript files we'll inject into web pages
"content_scripts": [ {
// These are the scripts we want to inject
"js": [
"js/jquery-2.1.0.min.js",
"js/main.js"
],
"css": [
"css/main.css"
],
// This tells Chrome to run these scripts on every page
"matches": [
"http://*/*",
"https://*/*"
],
// This tells Chrome to run these scripts after the page has finished loading
"run_at": "document_end"
}]
}