Cubox

Cubox

Save web pages and snippets to your Cubox

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_appName__",
  "short_name": "__MSG_appNameShort__",
  "version": "7.4.2",
  "manifest_version": 3,
  "default_locale": "en",
  "description": "__MSG_appDesc__",
  "author": "Odd Lab",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_icon": {
      "16": "icon/toolbar-icon-16.png",
      "24": "icon/toolbar-icon-24.png",
      "32": "icon/toolbar-icon-32.png"
    }
  },
  "icons": {
    "16": "icon/icon-16.png",
    "48": "icon/icon-48.png",
    "128": "icon/icon-128.png"
  },
  "permissions": [
    "activeTab",
    "storage",
    "cookies",
    "contextMenus",
    "tabs"
  ],
  "optional_permissions": [],
  "host_permissions": [
    "https://*.cubox.pro/",
    "https://*.cubox.cc/"
  ],
  "options_page": "html/options.html",
  "omnibox": {
    "keyword": "c"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+X",
        "windows": "Ctrl+Shift+X",
        "mac": "Command+Shift+X",
        "chromeos": "Ctrl+Shift+X",
        "linux": "Ctrl+Shift+X"
      },
      "description": "__MSG_extension_suggested_key_description__"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "html/*",
        "static/css/*",
        "fonts/*",
        "styles/*"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "version_name": "7.4.2",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}