-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
36 lines (36 loc) · 953 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
36
{
"name": "Anti-Scamaz",
"version": "4.2.0",
"manifest_version": 2,
"description": "See whether or not an image on imgur is animated, how long is the animation and what is the image format.",
"homepage_url": "https://github.com/RiTu1337/anti-scamaz",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"permissions": [
"http://scamaz.xyz/*",
"https://scamaz.xyz/*",
"http://*.imgur.com/*",
"https://*.imgur.com/*",
"activeTab"
],
"content_scripts": [{
"matches": [
"http://*.imgur.com/*",
"https://*.imgur.com/*"
],
"css": [
"src/inject/inject.css"
],
"js": [
"js/jquery.min.js",
"src/inject/inject.js"
],
"run_at": "document_start"
}],
"background": {
"scripts": ["background.js"]
}
}