Extreemit

Everything you ever wanted to add to Steemit

Cos'è Extreemit?

Extreemit è un'estensione di Chrome sviluppata da itchykitten, e la sua funzione principale è "Everything you ever wanted to add to Steemit".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Extreemit

Scarica i file di estensione Extreemit 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

                        A UI mod for Steemit.com Currently has one feature, which allows you to toggle displaying 'Resteems' on Steemit.com user profiles.  More to come! 

made by @itchykitten for use on steemit.com.                    

Informazioni di Base sull'Estensione

Nome Extreemit Extreemit
ID fongpbjdmmlocghoebbindiopneahhhk
URL Ufficiale https://chrome.google.com/webstore/detail/extreemit/fongpbjdmmlocghoebbindiopneahhhk
Descrizione Everything you ever wanted to add to Steemit
Dimensione del File 53.01 KB
Conteggio Installazioni 28
Versione Corrente 0.0.1
Ultimo Aggiornamento 2017-06-28
Data di Pubblicazione 2017-06-28
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore itchykitten
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Extreemit",
    "description": "Everything you ever wanted to add to Steemit",
    "version": "0.0.1",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "48": "steem48.png",
        "128": "steem128.png"
    },
    "permissions": [
        "activeTab",
        "https:\/\/ajax.googleapis.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/steemit.com\/*"
            ],
            "css": [
                "toggle.css"
            ],
            "js": [
                "jquery.js",
                "extreemit.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    }
}