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"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ 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 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"
    ]
}