-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
35 lines (35 loc) · 970 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
{
"name": "ClassifierAI",
"description": "A Chrome Extension that uses Machine Learning to determine if the image is AI-Generated.",
"version": "1.0.0",
"manifest_version": 3,
"permissions": ["scripting", "activeTab", "tabs", "storage"],
"content_scripts": [
{
"matches": ["*://www.google.com/search?*"],
"css": ["/src/main.css"],
"js": ["/src/package/ml5.min.js", "/src/imageClassifier.js"],
"run_at": "document_end"
}
],
"action": {
"default_popup": "./src/main.html"
},
"icons": {
"16": "./Images/ChromeIcon.png",
"48": "./Images/ChromeIcon.png",
"128": "./Images/ChromeIcon.png"
},
"web_accessible_resources": [
{
"matches": ["*://www.google.com/*"],
"resources": [
"/Images/AIFree.png",
"/Images/AINeutral.png",
"/Images/AIGenerated.png",
"/Images/loading.gif"
],
"use_dynamic_url": true
}
]
}