Blogspot Quickedit Links

Adds quickedit links for the new Contempo, Soho, Emporio and Notable themes, for a user-specified set of blogspot URLs.

Cos'è Blogspot Quickedit Links?

Blogspot Quickedit Links è un'estensione di Chrome sviluppata da https://so-how-do-i.blogspot.com, e la sua funzione principale è "Adds quickedit links for the new Contempo, Soho, Emporio and Notable themes, for a user-specified set of blogspot URLs.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Blogspot Quickedit Links

Scarica i file di estensione Blogspot Quickedit Links 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

                        Using a JS contentscript, adds quickedit links to the posts and gadgets on the new themes, which don't support them anymore.                    

Informazioni di Base sull'Estensione

Nome Blogspot Quickedit Links Blogspot Quickedit Links
ID hpdcclojnmclpjhgaaaffafcpkiabkeg
URL Ufficiale https://chromewebstore.google.com/detail/blogspot-quickedit-links/hpdcclojnmclpjhgaaaffafcpkiabkeg
Descrizione Adds quickedit links for the new Contempo, Soho, Emporio and Notable themes, for a user-specified set of blogspot URLs.
Dimensione del File 14.06 KB
Conteggio Installazioni 145
Versione Corrente 1.1
Ultimo Aggiornamento 2017-03-26
Data di Pubblicazione 2017-03-26
Valutazione 4.20/5 Totale 5 Valutazioni
Sviluppatore https://so-how-do-i.blogspot.com
Tipo di Pagamento free
Sito Web dell'Estensione https://so-how-do-i.blogspot.com
URL della Pagina di Aiuto https://so-how-do-i.blogspot.com.au/2017/03/add-quickedit-icons-to-new-themes.html
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Blogspot Quickedit Links",
    "description": "Adds quickedit links for the new Contempo, Soho, Emporio and Notable themes, for a user-specified set of blogspot URLs.",
    "version": "1.1",
    "icons": {
        "16": "logo_blogger_color_1x_web_16dp.png",
        "32": "logo_blogger_color_1x_web_32dp.png",
        "48": "logo_blogger_color_1x_web_48dp.png",
        "96": "logo_blogger_color_1x_web_96dp.png"
    },
    "browser_action": {
        "default_icon": "popupicon.png",
        "default_popup": "popup.html",
        "default_title": "Click to edit!"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "",
        "storage"
    ]
}