Clappe

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

Cos'è Clappe?

Clappe è un'estensione di Chrome sviluppata da jukben, e la sua funzione principale è "Clap like the whole crowd. Make your claps be heard on Medium.".

Screenshot dell'Estensione

Scarica il file CRX dell'estensione Clappe

Scarica i file di estensione Clappe in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Clappe Clappe
ID gfmcijindndhaflgmmkkcihndcclaled
URL Ufficiale https://chrome.google.com/webstore/detail/clappe/gfmcijindndhaflgmmkkcihndcclaled
Descrizione Clap like the whole crowd. Make your claps be heard on Medium.
Dimensione del File 296 KB
Conteggio Installazioni 83
Versione Corrente 1.1.0
Ultimo Aggiornamento 2018-12-13
Data di Pubblicazione 2018-12-13
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore jukben
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/jukben/clappe
URL della Pagina di Aiuto https://github.com/jukben/clappe/issues
Lingue Supportate 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
        }
    ]
}