Homebase

Homebase

The Homebase clipper

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Homebase",
  "version": "0.3435.0",
  "description": "The Homebase clipper",
  "background": {
    "scripts": [
      "chrome_background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": "files/extension_19.png",
    "default_title": "Create cards from this page!"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.homebase.io/extension/*"
      ],
      "js": [
        "iframe_message_bridge.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    },
    {
      "matches": [
        "*://*.homebase.io/*"
      ],
      "js": [
        "files/dont_show_install_button.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "permissions": [
    "storage",
    "contextMenus",
    "activeTab"
  ],
  "icons": {
    "16": "files/extension_16.png",
    "48": "files/extension_48.png",
    "128": "files/extension_128.png"
  },
  "web_accessible_resources": [
    "files/status/awesome-face.png",
    "files/status/cloud.png",
    "files/status/close.png",
    "files/status/sad-face.png"
  ],
  "options_page": "files/settings.html",
  "manifest_version": 2
}