TinyURL

A one-click tool to generate a tiny URL (https://tinyurl.com) from your current URL and automatically copy it to the clipboard.

TinyURL क्या है?

TinyURL ByteCrafter द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A one-click tool to generate a tiny URL (https://tinyurl.com) from your current URL and automatically copy it to the clipboard."।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        This extension uses https://tinyurl.com to create a tiny URL from today's ridiculously enormous URLs that frequently fail when launching from email clients and other URI enabled software.

With one click, the URL from your active tab will be sent to https://tinyurl.com, returning the tiny URL directly in to your clipboard, ready for pasting.

There is no extra clicking, and (optionally) no notifications. As soon as you click the icon, you can paste the tiny URL where you want it.                    

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

नाम TinyURL TinyURL
ID jbnhjginpjihefndhjlhlggblfbefpod
आधिकारिक URL https://chromewebstore.google.com/detail/tinyurl/jbnhjginpjihefndhjlhlggblfbefpod
विवरण A one-click tool to generate a tiny URL (https://tinyurl.com) from your current URL and automatically copy it to the clipboard.
फ़ाइल का आकार 12.51 KB
स्थापना संख्या 2,242
वर्तमान संस्करण 2019.9.27.22
अंतिम अपडेट 2019-09-30
प्रकाशन तिथि 2019-09-28
रेटिंग 3.67/5 कुल 3 रेटिंग्स
डेवलपर ByteCrafter
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "TinyURL",
    "short_name": "TinyURL",
    "version": "2019.9.27.22",
    "author": "Robert A Moreno II",
    "description": "A one-click tool to generate a tiny URL (https:\/\/tinyurl.com) from your current URL and automatically copy it to the clipboard.",
    "permissions": [
        "https:\/\/tinyurl.com\/",
        "activeTab",
        "tabs",
        "clipboardWrite",
        "storage",
        "contextMenus"
    ],
    "icons": {
        "16": "images\/tinyurl_16.png",
        "32": "images\/tinyurl_32.png",
        "48": "images\/tinyurl_48.png",
        "64": "images\/tinyurl_64.png",
        "128": "images\/tinyurl_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Create a TinyURL"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}