Blogspot Quickedit Links

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

Vad är Blogspot Quickedit Links?

Blogspot Quickedit Links är en Chrome-tillägg utvecklad av https://so-how-do-i.blogspot.com, och dess huvudfunktion är "Adds quickedit links for the new Contempo, Soho, Emporio and Notable themes, for a user-specified set of blogspot URLs.".

Tilläggsskärmbilder

screenshot

Ladda ner Blogspot Quickedit Links-förlängningens CRX-fil

Ladda ner Blogspot Quickedit Links-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Blogspot Quickedit Links Blogspot Quickedit Links
ID hpdcclojnmclpjhgaaaffafcpkiabkeg
Officiell webbadress https://chromewebstore.google.com/detail/blogspot-quickedit-links/hpdcclojnmclpjhgaaaffafcpkiabkeg
Beskrivning Adds quickedit links for the new Contempo, Soho, Emporio and Notable themes, for a user-specified set of blogspot URLs.
Filstorlek 14.06 KB
Antal Installationer 145
Aktuell Version 1.1
Senast Uppdaterad 2017-03-26
Publiceringsdatum 2017-03-26
Betyg 4.20/5 Totalt 5 Betyg
Utvecklare https://so-how-do-i.blogspot.com
Betalningssätt free
Tilläggswebbplats https://so-how-do-i.blogspot.com
Hjälpsida URL https://so-how-do-i.blogspot.com.au/2017/03/add-quickedit-icons-to-new-themes.html
Stödda Språk 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"
    ]
}