Cut it - URL Shortener

Shorten your URL's from anywhere.

Hvad er Cut it - URL Shortener?

Cut it - URL Shortener er en Chrome-udvidelse udviklet af https://cut.it.nf, og dens hovedfunktion er "Shorten your URL's from anywhere.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download Cut it - URL Shortener-udvidelses-CRX-fil

Download Cut it - URL Shortener-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Cut it - URL Shortener Cut it - URL Shortener
ID oobhmofbjccdinehjdhconeombgnfhkj
Officiel URL https://chromewebstore.google.com/detail/cut-it-url-shortener/oobhmofbjccdinehjdhconeombgnfhkj
Beskrivelse Shorten your URL's from anywhere.
Filstørrelse 63.59 KB
Antal Installationer 62
Nuværende Version 1.4
Senest Opdateret 2022-06-01
Udgivelsesdato 2022-02-16
Udvikler https://cut.it.nf
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://cut.it.nf
Hjælpeside-URL https://cut.it.nf/contact
Understøttede Sprog 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"
        }
    ]
}