demado

demado

ブラゲーのランチャー

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "demado",
  "version": "1.2.8",
  "description": "ブラゲーのランチャー",
  "permissions": [
    "downloads",
    "tabs",
    "storage",
    "<all_urls>"
  ],
  "icons": {
    "128": "img/128.png"
  },
  "browser_action": {
    "default_icon": {
      "32": "img/32.png"
    },
    "default_popup": "html/popup.html"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "/js/content_script.js"
      ]
    }
  ],
  "commands": {
    "capture": {
      "suggested_key": {
        "default": "Ctrl+Shift+S",
        "mac": "Command+Shift+S",
        "windows": "Ctrl+Shift+S"
      },
      "description": "demadoが効いてる現在の画面をスクショします"
    },
    "mute": {
      "suggested_key": {
        "default": "Ctrl+Shift+M",
        "mac": "Command+Shift+M",
        "windows": "Ctrl+Shift+M"
      },
      "description": "demadoが効いてる現在の画面をミュートします"
    }
  },
  "options_page": "html/configs.html"
}