Page Load Notifier

Page Load Notifier

Get a notification when a page finishes loading.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Page Load Notifier",
  "description": "Get a notification when a page finishes loading.",
  "permissions": [
    "notifications",
    "webNavigation",
    "storage",
    "tabs",
    "background"
  ],
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "version": "1.1",
  "options_page": "options.html",
  "browser_action": {
    "default_icon": {
      "19": "icons/icon19.png",
      "38": "icons/icon38.png"
    }
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "offline_enabled": true
}