Shortlink Finder

Displays an icon if the current page has an official shortlink and makes it easy to copy!

Shortlink Finder क्या है?

Shortlink Finder http://joe.gl द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Displays an icon if the current page has an official shortlink and makes it easy to copy!"।

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

screenshot

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

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

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

                        Displays an icon if the current page has an official short link/URL and makes it easy to copy!                    

एक्सटेंशन की मूल जानकारी

नाम Shortlink Finder Shortlink Finder
ID gjbgaoobcdohajkkcanaemikngkaojbk
आधिकारिक URL https://chrome.google.com/webstore/detail/shortlink-finder/gjbgaoobcdohajkkcanaemikngkaojbk
विवरण Displays an icon if the current page has an official shortlink and makes it easy to copy!
फ़ाइल का आकार 42.51 KB
स्थापना संख्या 23
वर्तमान संस्करण 1.1
अंतिम अपडेट 2014-07-11
प्रकाशन तिथि 2014-07-11
रेटिंग 2.33/5 कुल 3 रेटिंग्स
डेवलपर http://joe.gl
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/glombek/ShortlinkExtension
समर्थित भाषाएँ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Shortlink Finder",
    "version": "1.1",
    "description": "Displays an icon if the current page has an official shortlink and makes it easy to copy!",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.min.js",
                "content_script.js"
            ]
        }
    ],
    "page_action": {
        "default_icon": "icon-19.png",
        "default_title": "Get Shortlink",
        "default_popup": "popup.html"
    },
    "permissions": [
        "declarativeContent",
        "activeTab",
        "clipboardWrite"
    ],
    "icons": {
        "19": "icon-19.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "manifest_version": 2
}