-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
30 lines (30 loc) · 848 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
{
"manifest_version": 2,
"name": "Extractor",
"description": "Extract software engineering keywords from websites.",
"version": "0.0.1",
"author": "Muhammad Talha",
"homepage_url": "https://github.com/Mo-Talha/WWKeywordExtractor",
"browser_action": {
"default_icon": "icon.png",
"default_title": "Extractor"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content_script.js"]
}
],
"background" : {
"scripts" : ["compiled_background_script.js"],
"persistent": true
},
"web_accessible_resources": [
"extractor.wasm",
"extractor.data",
"popup.html",
"popup.css"
],
"permissions": ["storage"],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}