White Domain Badge

White Domain Badge

This extension shows you a green label on a browser-action-icon when you access to a site that is in your white domain list.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "This extension shows you a green label on a browser-action-icon when you access to a site that is in your white domain list.",
  "manifest_version": 2,
  "name": "White Domain Badge",
  "homepage_url": "https://slash-mochi.net/?p=2530",
  "version": "1.0",
  "icons": {
    "16": "slash-mochi16.png",
    "48": "slash-mochi48.png",
    "128": "slash-mochi128.png"
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_title": "White Domain Badge"
  },
  "options_ui": {
    "page": "index.html",
    "chrome_style": true
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}