demado

ブラゲーのランチャー

Was ist demado?

demado ist eine Chrome-Erweiterung, die von https://otiai10.com entwickelt wurde, und ihr Hauptmerkmal ist "ブラゲーのランチャー".

Erweiterungsscreenshots

screenshot

demado-Erweiterungs-CRX-Datei herunterladen

Laden Sie demado-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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へデータを移行する処理を準備しています                    

Grundlegende Informationen zur Erweiterung

Name demado demado
ID dfmhlfpfpbijchleocfbpcdjgnbpdigh
Offizielle URL https://chromewebstore.google.com/detail/demado/dfmhlfpfpbijchleocfbpcdjgnbpdigh
Beschreibung ブラゲーのランチャー
Dateigröße 2.49 MB
Installationsanzahl 10,000
Aktuelle Version 1.2.8
Letztes Update 2024-02-18
Veröffentlichungsdatum 2019-03-08
Bewertung 4.51/5 Insgesamt 85 Bewertungen
Entwickler https://otiai10.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/otiai10/demado
Hilfeseite URL https://github.com/otiai10/demado/issues/new
URL der Datenschutzrichtlinien-Seite https://github.com/KanCraft/kanColleWidget/blob/develop/PRIVACY_POLICY.md
Unterstützte Sprachen 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"
}