forked from mohamedmansour/my-hangouts-extension
-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
48 lines (48 loc) · 1.52 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
43
44
45
46
47
48
{
"name": "My Hangouts for Google Plus",
"version": "5.5.1",
"manifest_version": 1,
"description": "A better way to enjoy Hangouts on Google+ with Screen Captures and Editing, Maps, Circle Watching, for public and limited hangouts!",
"icons": {
"16": "img/icon16.png",
"32": "img/icon32.png",
"48": "img/icon48.png",
"128": "img/icon128.png"
},
"permissions": [
"unlimitedStorage",
"notifications",
"https://plus.google.com/*"
],
"background": {
"scripts": [
"/js/modules/options/settings.js",
"/js/libs/jquery-1.7.1.min.js",
"/js/libs/underscore-1.1.6.js",
"/js/libs/jquery.timeago.js",
"/js/jsapi/jsapi_helper.js",
"/js/jsapi/jsapi_abstract_database.js",
"/js/jsapi/jsapi_database.js",
"/js/jsapi/jsapi_for_google_plus.js",
"/js/jsapi_database_override.js",
"/js/modules/statistics/statistics_backend.js",
"/js/modules/capture_moments/capture_backend.js",
"/js/modules/circle_notifier/circle_notifier.js",
"/js/modules/maps/map_api.js",
"/js/modules/maps/map_backend.js",
"/js/hangout_updater.js",
"/js/browser_action_controller.js",
"/js/background_controller.js"
]
},
"browser_action": {
"default_title": "My Hangouts",
"default_popup": "popup.html"
},
"content_scripts": [{
"matches": ["https://plus.google.com/hangouts/_/*", "https://talkgadget.google.com/hangouts/_/*"],
"js": ["/js/my_hangout_injection.js"],
"run_at": "document_end",
"all_frames": true
}]
}