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”。

擴展截圖

screenshot
screenshot
screenshot

下載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 Tumblr Tag Copy
ID oakefghfmmcnejnpgpehidmbjgkelmdm
官方網址 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"
    ]
}