Tumblr Tag Copy
This extension copies the tags of the current reblog and paste them into tag edit field
Tumblr Tag Copy là gì?
Tumblr Tag Copy là một tiện ích mở rộng Chrome được phát triển bởi Albert González, và tính năng chính của nó là "This extension copies the tags of the current reblog and paste them into tag edit field".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Tumblr Tag Copy
Tải xuống các tệp mở rộng Tumblr Tag Copy dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Tumblr Tag Copy |
ID | oakefghfmmcnejnpgpehidmbjgkelmdm |
URL Chính Thức | https://chromewebstore.google.com/detail/tumblr-tag-copy/oakefghfmmcnejnpgpehidmbjgkelmdm |
Mô tả | This extension copies the tags of the current reblog and paste them into tag edit field |
Kích Thước Tệp | 446 KB |
Số Lần Cài Đặt | 920 |
Phiên Bản Hiện Tại | 1.0.2 |
Cập Nhật Lần Cuối | 2016-03-12 |
Ngày Phát Hành | 2016-03-12 |
Đánh Giá | 2.62/5 Tổng số 26 Đánh Giá |
Nhà Phát Triển | Albert González |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |