Web Lock

Web Lock

This is extension to lock your personal sites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Web Lock",
  "version": "1.0",
  "web_accessible_resources": [
    "inner.html"
  ],
  "permissions": [
    "tabs",
    "<all_urls>",
    "activeTab",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "16": "images/logo.png",
    "48": "images/logo.png",
    "128": "images/logo.png"
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "/images/logo.png",
    "default_title": "Web Lock"
  }
}