Tumblr Tag Copy

This extension copies the tags of the current reblog and paste them into tag edit field

O que é Tumblr Tag Copy?

Tumblr Tag Copy é uma extensão do Chrome desenvolvida por Albert González, e sua principal característica é "This extension copies the tags of the current reblog and paste them into tag edit field".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Tumblr Tag Copy

Baixe arquivos de extensão Tumblr Tag Copy 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

                        If you are a Tumblr user and you are tired of copy the same tags of your reblogs, this extension is for you.

Tumblr Tag Copy is a very small extension that allow you to copy the tags of the reblog with a button click. If you don't want to click any button, you can enable the auto-copy option, and the tags will be copied automatically in the reblog.                    

Informações Básicas da Extensão

Nome Tumblr Tag Copy Tumblr Tag Copy
ID oakefghfmmcnejnpgpehidmbjgkelmdm
URL Oficial https://chromewebstore.google.com/detail/tumblr-tag-copy/oakefghfmmcnejnpgpehidmbjgkelmdm
Descrição This extension copies the tags of the current reblog and paste them into tag edit field
Tamanho do Arquivo 446 KB
Contagem de Instalações 920
Versão Atual 1.0.2
Última Atualização 2016-03-12
Data de Publicação 2016-03-12
Classificação 2.62/5 Total de 26 Avaliações
Desenvolvedor Albert González
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tumblr Tag Copy",
    "description": "This extension copies the tags of the current reblog and paste them into tag edit field",
    "version": "1.0.2",
    "options_ui": {
        "page": "templates\/options.html",
        "chrome_style": true
    },
    "browser_action": {
        "default_popup": "templates\/options.html"
    },
    "icons": {
        "16": "images\/tumblrtagcopy_16.png",
        "48": "images\/tumblrtagcopy_48.png",
        "128": "images\/tumblrtagcopy_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.tumblr.com\/*"
            ],
            "js": [
                "node_modules\/jquery\/dist\/jquery.min.js",
                "node_modules\/underscore\/underscore-min.js",
                "src\/tagCopy.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        "images\/*.png"
    ]
}