BitLy

Shorten links quick and easy

BitLy क्या है?

BitLy matzondervan द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Shorten links quick and easy"।

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

screenshot

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

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

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

                        Updated to use bitly api V4
And the api key is now synced by your google account

* Make right-click on the link to shorten contents of a "href" attribute
* Make right-click on the selected text to treat it as link and shorten it
* To shorten current tab's URL click extension's button located on the right from address bar

Short URL will be automatically copied to the clipboard.

Code can be found on Github: https://github.com/Matthijz98/Url-shortener-chome-extension                    

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

नाम BitLy BitLy
ID odilpbnahibaonlfnciocdfdlilfigco
आधिकारिक URL https://chromewebstore.google.com/detail/bitly/odilpbnahibaonlfnciocdfdlilfigco
विवरण Shorten links quick and easy
फ़ाइल का आकार 13.11 KB
स्थापना संख्या 9,501
वर्तमान संस्करण 0.1.0
अंतिम अपडेट 2023-07-14
प्रकाशन तिथि 2017-04-16
रेटिंग 4.38/5 कुल 16 रेटिंग्स
डेवलपर matzondervan
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/Matthijz98/Url-shortener-chome-extension
सहायता पृष्ठ URL https://github.com/Matthijz98/Url-shortener-chome-extension
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "BitLy",
    "version": "0.1.0",
    "description": "Shorten links quick and easy",
    "background": {
        "service_worker": "background.js"
    },
    "options_page": "options.html",
    "icons": {
        "16": "icons\/bitly_16.png",
        "32": "icons\/bitly_32.png",
        "48": "icons\/bitly_32.png",
        "128": "icons\/bitly_32.png"
    },
    "permissions": [
        "tabs",
        "contextMenus",
        "storage",
        "scripting"
    ],
    "action": {
        "default_icon": "icons\/bitly_16.png",
        "default_popup": "popup.html",
        "default_title": "Shorten links quick and easy"
    },
    "host_permissions": [
        "*:\/\/*\/*"
    ]
}