Clappe

Clap like the whole crowd. Make your claps be heard on Medium.

Was ist Clappe?

Clappe ist eine Chrome-Erweiterung, die von jukben entwickelt wurde, und ihr Hauptmerkmal ist "Clap like the whole crowd. Make your claps be heard on Medium.".

Erweiterungsscreenshots

Clappe-Erweiterungs-CRX-Datei herunterladen

Laden Sie Clappe-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

                        Tiny extension to make your claps be heard on Medium. Also providing super clap functionality if you want to be really supportive as a crowd.                    

Grundlegende Informationen zur Erweiterung

Name Clappe Clappe
ID gfmcijindndhaflgmmkkcihndcclaled
Offizielle URL https://chrome.google.com/webstore/detail/clappe/gfmcijindndhaflgmmkkcihndcclaled
Beschreibung Clap like the whole crowd. Make your claps be heard on Medium.
Dateigröße 296 KB
Installationsanzahl 83
Aktuelle Version 1.1.0
Letztes Update 2018-12-13
Veröffentlichungsdatum 2018-12-13
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler jukben
Zahlungsart free
Erweiterungswebsite https://github.com/jukben/clappe
Hilfeseite URL https://github.com/jukben/clappe/issues
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDescription__",
    "version": "1.1.0",
    "short_name": "__MSG_appShortName__",
    "manifest_version": 2,
    "default_locale": "en",
    "web_accessible_resources": [
        "sounds\/*"
    ],
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "permissions": [
        "storage"
    ],
    "page_action": {
        "default_title": "__MSG_browserActionTitle__"
    },
    "options_page": "pages\/options.html",
    "options_ui": {
        "page": "pages\/options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "styles\/contentscript.css"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}