Tumblr Tag Copy
This extension copies the tags of the current reblog and paste them into tag edit field
Was ist Tumblr Tag Copy?
Tumblr Tag Copy ist eine Chrome-Erweiterung, die von Albert González entwickelt wurde, und ihr Hauptmerkmal ist "This extension copies the tags of the current reblog and paste them into tag edit field".
Erweiterungsscreenshots
Tumblr Tag Copy-Erweiterungs-CRX-Datei herunterladen
Laden Sie Tumblr Tag Copy-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Tumblr Tag Copy |
ID | oakefghfmmcnejnpgpehidmbjgkelmdm |
Offizielle URL | https://chromewebstore.google.com/detail/tumblr-tag-copy/oakefghfmmcnejnpgpehidmbjgkelmdm |
Beschreibung | This extension copies the tags of the current reblog and paste them into tag edit field |
Dateigröße | 446 KB |
Installationsanzahl | 920 |
Aktuelle Version | 1.0.2 |
Letztes Update | 2016-03-12 |
Veröffentlichungsdatum | 2016-03-12 |
Bewertung | 2.62/5 Insgesamt 26 Bewertungen |
Entwickler | Albert González |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |