Cut it - URL Shortener

Shorten your URL's from anywhere.

Τι είναι το Cut it - URL Shortener;

Το Cut it - URL Shortener είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://cut.it.nf, και η κύρια λειτουργία του είναι "Shorten your URL's from anywhere.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Cut it - URL Shortener

Λήψη αρχείων επέκτασης Cut it - URL Shortener σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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"
        }
    ]
}