URL Shortener - TinyURL Extension

Shorten URLs with ease.

Τι είναι το URL Shortener - TinyURL Extension;

Το URL Shortener - TinyURL Extension είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον dev.bergda, και η κύρια λειτουργία του είναι "Shorten URLs with ease.".

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

screenshot

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

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

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

                        The only URL Shortener Extension that doesn't open a popup.

Clicking the Extension Icon is all you need to do to shorten and copy the current URL, with no extra clutter do distract you from your browsing.

The same functionality is added to Chrome's Context menu for links, right-clicking a link gives you the option to shorten and copy the clicked link with just one click.

An 'OK' or 'ERR' badge is displayed on the Extension Icon to notify the user about a successful shortening and that the shortened URL is now copied to the user's clipboard, or to notify the user of an error.

This extension uses TinyURL's URL Shortener Service to shorten the URLs.
This extension does not store user data at any point. The current URL (or the URL from the clicked link) is the only thing that gets sent to the TinyURL API. The original URL or the shortened URL is not stored by this extension.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα URL Shortener - TinyURL Extension URL Shortener - TinyURL Extension
ID mnnjjchefohcoocleiepmdpfhdpgoflk
Επίσημο URL https://chromewebstore.google.com/detail/url-shortener-tinyurl-ext/mnnjjchefohcoocleiepmdpfhdpgoflk
Περιγραφή Shorten URLs with ease.
Μέγεθος Αρχείου 8.04 KB
Αριθμός Εγκαταστάσεων 60
Τρέχουσα Έκδοση 1.0.0
Τελευταία Ενημέρωση 2023-08-05
Ημερομηνία Δημοσίευσης 2023-08-05
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής dev.bergda
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "URL Shortener - TinyURL Extension",
    "version": "1.0.0",
    "description": "Shorten URLs with ease.",
    "action": {
        "default_title": "Shorten Url and Copy to Clipboard"
    },
    "icons": {
        "48": "icons\/icon48.png",
        "96": "icons\/icon96.png"
    },
    "background": {
        "service_worker": "service-worker.js"
    },
    "permissions": [
        "activeTab",
        "scripting",
        "contextMenus",
        "clipboardWrite"
    ],
    "content_security_policy": {
        "extension_pages": "default-src 'self'; connect-src 'self' https:\/\/tinyurl.com;"
    }
}