Auto Refresh With Notifications

Auto Refresh With Notifications

chrome extension to auto refresh web page with notifications.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Auto Refresh With Notifications",
  "version": "0.0.4",
  "description": "chrome extension to auto refresh web page with notifications.",
  "permissions": [
    "tts",
    "activeTab",
    "storage"
  ],
  "browser_action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "run_at": "document_idle",
      "js": [
        "lib/js/jquery.min.js",
        "contentScript.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "icons": {
    "128": "icon.png"
  }
}