-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmanifest.json
42 lines (41 loc) · 1.2 KB
/
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
37
38
39
40
41
42
{
"update_url": "https://clients2.google.com/service/update2/crx",
"author": "BaketHunt",
"background": {
"scripts": ["js/util.js", "js/notification.js", "js/bg.js", "js/start.js", "js/recovery.js", "js/smtp.js"]
},
"content_security_policy": "script-src 'self' https://*.google.com https://*.gstatic.com https://*.google-analytics.com; object-src 'self'",
"default_locale": "en",
"description": "This extension allows you to lock your browser after a specified period of inactivity.",
"icons": {
"128": "logos/logo-94.png",
"16": "logos/logo-94.png",
"24": "logos/logo-94.png",
"48": "logos/logo-94.png",
"64": "logos/logo-94.png"
},
"manifest_version": 2,
"minimum_chrome_version": "49",
"name": "BasketHunt Browser Locker",
"options_page": "html/options.html",
"commands": {
"lock-the-browser": {
"suggested_key": {
"default": "Ctrl+Shift+Y",
"mac": "Command+Shift+Y"
},
"description": "Press to lock your browser"
}
},
"permissions": [
"tabs",
"notifications",
"contextMenus",
"storage",
"unlimitedStorage",
"history",
"*://google.com/*"
],
"short_name": "Browser Locker",
"version": "1.0.7"
}