Cut it - URL Shortener

Shorten your URL's from anywhere.

Qu'est-ce que Cut it - URL Shortener ?

Cut it - URL Shortener est une extension Chrome développée par https://cut.it.nf, et sa fonction principale est "Shorten your URL's from anywhere.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Cut it - URL Shortener

Téléchargez les fichiers d'extension Cut it - URL Shortener au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Cut it - URL Shortener Cut it - URL Shortener
ID oobhmofbjccdinehjdhconeombgnfhkj
URL Officiel https://chromewebstore.google.com/detail/cut-it-url-shortener/oobhmofbjccdinehjdhconeombgnfhkj
Description Shorten your URL's from anywhere.
Taille du Fichier 63.59 KB
Nombre d'Installations 62
Version Actuelle 1.4
Dernière Mise à Jour 2022-06-01
Date de Publication 2022-02-16
Développeur https://cut.it.nf
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://cut.it.nf
URL de la Page d'Aide https://cut.it.nf/contact
Langues Prises en Charge 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"
        }
    ]
}