demado

ブラゲーのランチャー

demado란 무엇입니까?

demado은(는) https://otiai10.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "ブラゲーのランチャー"입니다.

확장 프로그램 스크린샷

screenshot

demado 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        DMMのゲームをはじめ、ブラゲーをサイズぴったりの別窓で開くランチャーです。設定からDMMゲームと窓の大きさなどを登録してください。「Prisc!」というChrome拡張も入ってると、ワンクリックでスクショも撮れます。

【demadoのソースコード】
https://github.com/otiai10/demado

【Prisc!のインストール】
https://chrome.google.com/webstore/detail/prisc/gghkamaeinhfnhpempdbopannocnlbkg?hl=ja

v1.2.8: Chrome Manifest V3 対応のため、localStorageからchrome.storageへデータを移行する処理を準備しています                    

확장 프로그램 기본 정보

이름 demado demado
ID dfmhlfpfpbijchleocfbpcdjgnbpdigh
공식 URL https://chromewebstore.google.com/detail/demado/dfmhlfpfpbijchleocfbpcdjgnbpdigh
설명 ブラゲーのランチャー
파일 크기 2.49 MB
설치 횟수 10,000
현재 버전 1.2.8
최근 업데이트 2024-02-18
출시 날짜 2019-03-08
평점 4.51/5 총 85 개의 평점
개발자 https://otiai10.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/otiai10/demado
도움말 페이지 URL https://github.com/otiai10/demado/issues/new
개인정보 보호 정책 페이지 URL https://github.com/KanCraft/kanColleWidget/blob/develop/PRIVACY_POLICY.md
지원되는 언어 ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "demado",
    "version": "1.2.8",
    "description": "\u30d6\u30e9\u30b2\u30fc\u306e\u30e9\u30f3\u30c1\u30e3\u30fc",
    "permissions": [
        "downloads",
        "tabs",
        "storage",
        ""
    ],
    "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\u304c\u52b9\u3044\u3066\u308b\u73fe\u5728\u306e\u753b\u9762\u3092\u30b9\u30af\u30b7\u30e7\u3057\u307e\u3059"
        },
        "mute": {
            "suggested_key": {
                "default": "Ctrl+Shift+M",
                "mac": "Command+Shift+M",
                "windows": "Ctrl+Shift+M"
            },
            "description": "demado\u304c\u52b9\u3044\u3066\u308b\u73fe\u5728\u306e\u753b\u9762\u3092\u30df\u30e5\u30fc\u30c8\u3057\u307e\u3059"
        }
    },
    "options_page": "html\/configs.html"
}