Blogspot Quickedit Links

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

Was ist Blogspot Quickedit Links?

Blogspot Quickedit Links ist eine Chrome-Erweiterung, die von https://so-how-do-i.blogspot.com entwickelt wurde, und ihr Hauptmerkmal ist "Adds quickedit links for the new Contempo, Soho, Emporio and Notable themes, for a user-specified set of blogspot URLs.".

Erweiterungsscreenshots

screenshot

Blogspot Quickedit Links-Erweiterungs-CRX-Datei herunterladen

Laden Sie Blogspot Quickedit Links-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

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

Grundlegende Informationen zur Erweiterung

Name Blogspot Quickedit Links Blogspot Quickedit Links
ID hpdcclojnmclpjhgaaaffafcpkiabkeg
Offizielle URL https://chromewebstore.google.com/detail/blogspot-quickedit-links/hpdcclojnmclpjhgaaaffafcpkiabkeg
Beschreibung Adds quickedit links for the new Contempo, Soho, Emporio and Notable themes, for a user-specified set of blogspot URLs.
Dateigröße 14.06 KB
Installationsanzahl 145
Aktuelle Version 1.1
Letztes Update 2017-03-26
Veröffentlichungsdatum 2017-03-26
Bewertung 4.20/5 Insgesamt 5 Bewertungen
Entwickler https://so-how-do-i.blogspot.com
Zahlungsart free
Erweiterungswebsite https://so-how-do-i.blogspot.com
Hilfeseite URL https://so-how-do-i.blogspot.com.au/2017/03/add-quickedit-icons-to-new-themes.html
Unterstützte Sprachen 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"
    ]
}