Tumblr Tag Copy

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

Wat is Tumblr Tag Copy?

Tumblr Tag Copy is een Chrome-extensie ontwikkeld door Albert González, en de belangrijkste functie is "This extension copies the tags of the current reblog and paste them into tag edit field".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Tumblr Tag Copy

Download Tumblr Tag Copy-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Tumblr Tag Copy Tumblr Tag Copy
ID oakefghfmmcnejnpgpehidmbjgkelmdm
Officiële URL https://chromewebstore.google.com/detail/tumblr-tag-copy/oakefghfmmcnejnpgpehidmbjgkelmdm
Beschrijving This extension copies the tags of the current reblog and paste them into tag edit field
Bestandsgrootte 446 KB
Aantal Installaties 920
Huidige Versie 1.0.2
Laatst Bijgewerkt 2016-03-12
Publicatiedatum 2016-03-12
Beoordeling 2.62/5 Totaal 26 Beoordelingen
Ontwikkelaar Albert González
Betalingswijze free
Ondersteunde Talen 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"
    ]
}