Blogspot Quickedit Links

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

O que é Blogspot Quickedit Links?

Blogspot Quickedit Links é uma extensão do Chrome desenvolvida por https://so-how-do-i.blogspot.com, e sua principal característica é "Adds quickedit links for the new Contempo, Soho, Emporio and Notable themes, for a user-specified set of blogspot URLs.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Blogspot Quickedit Links

Baixe arquivos de extensão Blogspot Quickedit Links no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Blogspot Quickedit Links Blogspot Quickedit Links
ID hpdcclojnmclpjhgaaaffafcpkiabkeg
URL Oficial https://chromewebstore.google.com/detail/blogspot-quickedit-links/hpdcclojnmclpjhgaaaffafcpkiabkeg
Descrição Adds quickedit links for the new Contempo, Soho, Emporio and Notable themes, for a user-specified set of blogspot URLs.
Tamanho do Arquivo 14.06 KB
Contagem de Instalações 145
Versão Atual 1.1
Última Atualização 2017-03-26
Data de Publicação 2017-03-26
Classificação 4.20/5 Total de 5 Avaliações
Desenvolvedor https://so-how-do-i.blogspot.com
Tipo de Pagamento free
Site da Extensão https://so-how-do-i.blogspot.com
URL da Página de Ajuda https://so-how-do-i.blogspot.com.au/2017/03/add-quickedit-icons-to-new-themes.html
Idiomas Suportados 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"
    ]
}