-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
34 lines (34 loc) · 934 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
{
"manifest_version": 2,
"name": "Ekşi Bildirimci",
"short_name": "EB",
"description": "Ekşisözlük'de yeni açılan başlıkları haber verir.",
"background": {
"page": "background.html"
},
"content_scripts": [
{
"matches": [
"https://eksisozluk.com/*",
"https://banabenianlat.net/*"
],
"js": ["jquery.js","content.js"],
"run_at": "document_start"
}
],
"browser_action": {
"default_popup": "popup.html"
},
"version": "0.4.5",
"permissions": [
"notifications",
"storage",
"identity",
"identity.email",
"webNavigation"
],
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
"icons": { "16": "icon/icon16.png",
"48": "icon/icon48.png",
"128": "icon/icon128.png" }
}