Tumblr Tag Copy

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

¿Qué es Tumblr Tag Copy?

Tumblr Tag Copy es una extensión de Chrome desarrollada por Albert González, y su función principal es "This extension copies the tags of the current reblog and paste them into tag edit field".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Tumblr Tag Copy

Descarga archivos de extensión Tumblr Tag Copy en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Tumblr Tag Copy Tumblr Tag Copy
ID oakefghfmmcnejnpgpehidmbjgkelmdm
URL Oficial https://chromewebstore.google.com/detail/tumblr-tag-copy/oakefghfmmcnejnpgpehidmbjgkelmdm
Descripción This extension copies the tags of the current reblog and paste them into tag edit field
Tamaño del Archivo 446 KB
Cantidad de Instalaciones 920
Versión Actual 1.0.2
Última Actualización 2016-03-12
Fecha de Publicación 2016-03-12
Calificación 2.62/5 Total de 26 Calificaciones
Desarrollador Albert González
Tipo de Pago free
Idiomas Soportados 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"
    ]
}