-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmanifest.json
More file actions
42 lines (42 loc) · 1.15 KB
/
manifest.json
File metadata and controls
42 lines (42 loc) · 1.15 KB
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
{
"name": "Super Full Feeds for Google Reader\u2122",
"version": "1.3.2",
"description": "Enables full content feeds for Google Reader. Provides readable content or iframing of feed entries.",
"permissions": [
"http://*/*",
"https://*/*",
"tabs"
],
"icons": { "16": "rss_16x16.png",
"48": "rss_48x48.png",
"128": "rss_128x128.png" },
"content_scripts": [
{
"matches": ["*://*/reader/view*", "*://*/reader/settings*"],
"js": ["jquery.js", "debug.js", "storage.js", "readability.js", "readability_sgr.js", "sgr.js", "reader.js"],
"all_frames": true
}
,
{
"matches": ["*://*/reader/view*", "*://*/reader/settings*"],
"js": ["reader_preload.js"],
"run_at": "document_start",
"all_frames": true
}
,
{
"matches": ["http://*/*", "https://*/*"],
"js": ["iframe_preload.js"],
"run_at": "document_start",
"all_frames": true
}
,
{
"matches": ["http://*/*", "https://*/*"],
"js": ["jquery.js", "debug.js", "iframe.js"],
"run_at": "document_end",
"all_frames": true
}
],
"background_page": "background.html"
}