Hoasted Check

Hoasted Check

Shows an blue cloud in the omnibar when you are browsing a site that is hosted on Hoasted

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Hoasted Check",
  "description": "Shows an blue cloud in the omnibar when you are browsing a site that is hosted on Hoasted",
  "version": "1.1.4",
  "manifest_version": 2,
  "icons": {
    "128": "images/orange-cloud-128.png"
  },
  "permissions": [
    "tabs",
    "webNavigation",
    "webRequest",
    "http://*/",
    "https://*/"
  ],
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "page_action": {
    "default_title": "Hoasted"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentscript.js"
      ],
      "run_at": "document_start"
    }
  ],
  "options_page": "options.html",
  "content_security_policy": "object-src 'self'; script-src 'self' 'unsafe-eval';"
}