Tumblr Tag Copy
This extension copies the tags of the current reblog and paste them into tag edit field
Что такое Tumblr Tag Copy?
Tumblr Tag Copy - это расширение Chrome, разработанное Albert González, и его основная функция - "This extension copies the tags of the current reblog and paste them into tag edit field".
Снимки экрана расширения
Скачать файл CRX расширения Tumblr Tag Copy
Скачайте файлы расширений Tumblr Tag Copy в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | Tumblr Tag Copy |
ID | oakefghfmmcnejnpgpehidmbjgkelmdm |
Официальный URL | https://chromewebstore.google.com/detail/tumblr-tag-copy/oakefghfmmcnejnpgpehidmbjgkelmdm |
Описание | This extension copies the tags of the current reblog and paste them into tag edit field |
Размер файла | 446 KB |
Количество установок | 920 |
Текущая Версия | 1.0.2 |
Последнее Обновление | 2016-03-12 |
Дата публикации | 2016-03-12 |
Рейтинг | 2.62/5 Всего 26 оценок |
Разработчик | Albert González |
Тип оплаты | free |
Поддерживаемые языки | 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" ] } |