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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension copies the tags of the current reblog and paste them into tag edit field"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Tumblr Tag Copy एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    ]
}