Blogspot Quickedit Links

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

Qu'est-ce que Blogspot Quickedit Links ?

Blogspot Quickedit Links est une extension Chrome développée par https://so-how-do-i.blogspot.com, et sa fonction principale est "Adds quickedit links for the new Contempo, Soho, Emporio and Notable themes, for a user-specified set of blogspot URLs.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Blogspot Quickedit Links

Téléchargez les fichiers d'extension Blogspot Quickedit Links au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Blogspot Quickedit Links Blogspot Quickedit Links
ID hpdcclojnmclpjhgaaaffafcpkiabkeg
URL Officiel https://chromewebstore.google.com/detail/blogspot-quickedit-links/hpdcclojnmclpjhgaaaffafcpkiabkeg
Description Adds quickedit links for the new Contempo, Soho, Emporio and Notable themes, for a user-specified set of blogspot URLs.
Taille du Fichier 14.06 KB
Nombre d'Installations 145
Version Actuelle 1.1
Dernière Mise à Jour 2017-03-26
Date de Publication 2017-03-26
Évaluation 4.20/5 Total 5 Évaluations
Développeur https://so-how-do-i.blogspot.com
Type de Paiement free
Site Web de l'Extension https://so-how-do-i.blogspot.com
URL de la Page d'Aide https://so-how-do-i.blogspot.com.au/2017/03/add-quickedit-icons-to-new-themes.html
Langues Prises en Charge 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"
    ]
}