Cut it - URL Shortener

Shorten your URL's from anywhere.

Cut it - URL Shortener क्या है?

Cut it - URL Shortener https://cut.it.nf द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Shorten your URL's from anywhere."।

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

screenshot
screenshot
screenshot

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

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

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

                        Create short links from any page and share them with the world.

In this extension you can shorten any link by 2 options

1. The user can click on the icon of this extension  in your "Addons" above


2. The user can shorten the link from Context Menu (Right Click Menu), just go over a link,video,image etc, click on the right click button and click "Shorten URL with Cut.it" wait a second and the Short URL will be copied automatically                    

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

नाम Cut it - URL Shortener Cut it - URL Shortener
ID oobhmofbjccdinehjdhconeombgnfhkj
आधिकारिक URL https://chromewebstore.google.com/detail/cut-it-url-shortener/oobhmofbjccdinehjdhconeombgnfhkj
विवरण Shorten your URL's from anywhere.
फ़ाइल का आकार 63.59 KB
स्थापना संख्या 62
वर्तमान संस्करण 1.4
अंतिम अपडेट 2022-06-01
प्रकाशन तिथि 2022-02-16
डेवलपर https://cut.it.nf
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://cut.it.nf
सहायता पृष्ठ URL https://cut.it.nf/contact
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Cut it - URL Shortener",
    "description": "Shorten your URL's from anywhere.",
    "version": "1.4",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "action": {
        "default_icon": "icon.png",
        "default_popup": "views\/popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "contextMenus"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "options_page": "views\/options.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "css": [
                "css\/content.css"
            ],
            "run_at": "document_end"
        }
    ]
}