After Reader

After Reader

Do not let your reading habbit die with Google Reader

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "After Reader",
  "version": "1.0.3",
  "manifest_version": 2,
  "description": "Do not let your reading habbit die with Google Reader",
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/jquery.min.js",
        "js/app.js"
      ],
      "matches": [
        "http://*.google.co.in/*",
        "https://*.google.co.in/*",
        "http://*.google.com/*",
        "https://*.google.com/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "icons": {
    "19": "images/logo_19.gif",
    "48": "images/logo_48.gif",
    "64": "images/logo_64.gif",
    "128": "images/logo_128.gif"
  },
  "page_action": {
    "default_icon": "images/logo_19.gif",
    "default_popup": "popup.html",
    "default_title": "Want to change your reader?"
  },
  "permissions": [
    "tabs",
    "http://*.google.co.in/",
    "https://*.google.co.in/",
    "http://*.google.com/*",
    "https://*.google.com/*",
    "unlimitedStorage"
  ]
}