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はAlbert Gonzálezによって開発されたChromeの拡張機能で、その主な機能は「This extension copies the tags of the current reblog and paste them into tag edit field」です。
拡張機能のスクリーンショット
Tumblr Tag Copy拡張機能のCRXファイルをダウンロード
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" ] } |