-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
35 lines (35 loc) · 852 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
{
"manifest_version": 3,
"name": "Scrapifi",
"author": "[email protected]",
"version": "0.0.3",
"description": "Scrape predefined elements from webpages",
"permissions": [
"clipboardWrite",
"commands"
],
"background": {
"service_worker": "service-worker.js"
},
"content_scripts": [
{
"js": [
"scripts/schemas.js",
"scripts/format.js",
"scripts/content.js"
],
"matches": [
"https://www.bayut.com/property/*",
"https://www.bayut.com/*/property/*"
]
}
],
"commands": {
"set-clip": {
"suggested_key": {
"default": "Ctrl+Shift+X"
},
"description": "Copy content to clipboard"
}
}
}