Tab watcher

Tab watcher

Monitors tabs for content changes and pushes a notification on detected change.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "short_name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "version": "1.2.1",
  "default_locale": "en",
  "author": "WebIT-Service",
  "minimum_chrome_version": "20",
  "icons": {
    "16": "assets/icon-16x16.png",
    "19": "assets/icon-19x19.png",
    "32": "assets/icon-32x32.png",
    "38": "assets/icon-38x38.png",
    "48": "assets/icon-48x48.png",
    "128": "assets/icon-128x128.png"
  },
  "background": {
    "scripts": [
      "js/background.min.js"
    ],
    "persistent": false
  },
  "permissions": [
    "tabs",
    "storage",
    "notifications",
    "*://*/"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/script.min.js"
      ]
    }
  ],
  "browser_action": {
    "default_title": "__MSG_actionTitle__",
    "default_icon": {
      "19": "assets/icon-19x19.png",
      "38": "assets/icon-38x38.png"
    },
    "default_popup": "html/options.html"
  },
  "options_page": "html/options.html",
  "options_ui": {
    "chrome_style": true,
    "page": "html/options.html",
    "open_in_tab": false
  }
}