forked from ageitgey/show-facebook-computer-vision-tags
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
24 lines (24 loc) · 778 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
{
"name": "Show Facebook Computer Vision Tags",
"version": "0.0.1",
"author": "Adam Geitgey",
"manifest_version": 2,
"description": "Shows what Facebook thinks your pictures contain",
"homepage_url": "https://github.com/ageitgey/show-facebook-computer-vision-tags",
"permissions": [
"http://www.facebook.com/*", "https://www.facebook.com/*", "https://web.facebook.com/*"
],
"web_accessible_resources": ["locales/*"],
"icons": {
"128": "logo128.png",
"16": "logo16.png",
"48": "logo48.png"
},
"content_scripts": [{
"matches": ["http://www.facebook.com/*", "https://www.facebook.com/*", "https://web.facebook.com/*"],
"css": ["facebook.css"],
"js": ["facebook.js"],
"run_at": "document_idle",
"all_frames": false
}]
}