Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,36 +3,36 @@
"version": "1.3.2",
"description": "Enables full content feeds for Google Reader. Provides readable content or iframing of feed entries.",
"permissions": [
"http://*/*",
"https://*/*",
"http://*.google.*/reader/view*",
"https://*.google.*/reader/view*",
"tabs"
],
"icons": { "16": "rss_16x16.png",
"48": "rss_48x48.png",
"128": "rss_128x128.png" },
"content_scripts": [
{
"matches": ["*://*/reader/view*", "*://*/reader/settings*"],
"matches": ["*://*.google.*/reader/view*", "*://*.google.*/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*"],
"matches": ["*://*.google.*/reader/view*", "*://*.google.*/reader/settings*"],
"js": ["reader_preload.js"],
"run_at": "document_start",
"all_frames": true
}
,
{
"matches": ["http://*/*", "https://*/*"],
"matches": ["http://*.google.*/*", "https://*.google.*/*"],
"js": ["iframe_preload.js"],
"run_at": "document_start",
"all_frames": true
}
,
{
"matches": ["http://*/*", "https://*/*"],
"matches": ["http://*.google.*/*", "https://*.google.*/*"],
"js": ["jquery.js", "debug.js", "iframe.js"],
"run_at": "document_end",
"all_frames": true
Expand Down