Examine source code of demado - 出窓

Inspect and view changes in demado - 出窓 source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "demado",
  "version": "1.2.1",
  "description": "ブラゲーのランチャー",
  "permissions": [
    "downloads",
    "tabs",
    "<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",
  "browser_specific_settings": {
    "gecko": {
      "id": "{0fd8b051-9180-4726-8474-804df48c5833}"
    }
  }
}