PassBrow: Browser Password/Site Blocking

PassBrow: Browser Password/Site Blocking

Protect your browser with a synced password on any browser using the same account and keep any site you want blocked. Also you can generate passwords.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_name_extension__",
  "short_name": "PassBrow",
  "description": "__MSG_description_extension__",
  "default_locale": "en",
  "version": "6.10.9",
  "manifest_version": 2,
  "minimum_chrome_version": "49",
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "options_ui": {
    "page": "html/options.html",
    "open_in_tab": true
  },
  "omnibox": {
    "keyword": "pb"
  },
  "content_security_policy": "script-src 'sha256-vr0dQJehJI+xv5F+B4vws+bepDq8DKREHjeIv4CHiYo=' 'self' https://*.paypal.com https://*.stripe.com; object-src 'self'; frame-src https://*.stripe.com https://*.paypal.com",
  "icons": {
    "16": "images/icon_16.png",
    "48": "images/icon_48.png",
    "128": "images/icon_128.png"
  },
  "background": {
    "scripts": [
      "js/clientPB.js",
      "js/licensePB.js",
      "js/notificationPB.js",
      "js/utilsPB.js",
      "js/storagePB.js",
      "js/passbrow.js",
      "js/startPB.js"
    ]
  },
  "browser_action": {
    "default_icon": "images/icon_gray_48.png",
    "default_title": "__MSG_name_extension__",
    "default_popup": "html/popup.html"
  },
  "commands": {
    "lock_browser": {
      "suggested_key": {
        "default": "Ctrl+Shift+9",
        "mac": "Command+Shift+9"
      },
      "description": "Lock browser"
    }
  },
  "permissions": [
    "tabs",
    "notifications",
    "contextMenus",
    "idle",
    "storage",
    "unlimitedStorage",
    "*://*.paypal.com/*"
  ],
  "web_accessible_resources": [
    "images/icon_48.png"
  ]
}