YOURLS

Shorten URLs with your own YOURLS instance

Cos'è YOURLS?

YOURLS è un'estensione di Chrome sviluppata da https://binfalse.de, e la sua funzione principale è "Shorten URLs with your own YOURLS instance".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione YOURLS

Scarica i file di estensione YOURLS in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Shorten URLs with your own YOURLS instanceYOURLS is free software to create short URLs for websites. It can be installed and run by everyone!

This extension eases the shortening of URLs from Chrome. It integrates into the UI (toolbar button and context menu) and communicates with your own or a public YOURLS instance.

Key features:

    passwordless authentication
    provide a keyword for the short URL
    selected text on the web page to use it as keyword
    automatically copy the resulting short URL to your clipboard


Permissions:

    Access data for all web sites: The extension needs access to the current website to get the URL and potentially selected text (for keyword suggestions), and the extension needs to access any other URL to communicated with private YOURLS instances.
    Input data to the clipboard: The extension is able to copy the shortened URL to clipboard (can be configured in the extension's preferences) 


No ads! No analytics! No tracking!


Read more at my website.                    

Informazioni di Base sull'Estensione

Nome YOURLS YOURLS
ID nddaaiojgkoldnhnmkoldmkeocbooken
URL Ufficiale https://chromewebstore.google.com/detail/yourls/nddaaiojgkoldnhnmkoldmkeocbooken
Descrizione Shorten URLs with your own YOURLS instance
Dimensione del File 40.92 KB
Conteggio Installazioni 2,333
Versione Corrente 2.2.2
Ultimo Aggiornamento 2021-03-08
Data di Pubblicazione 2018-05-07
Valutazione 4.67/5 Totale 21 Valutazioni
Sviluppatore https://binfalse.de
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://binfalse.de/software/browser-extensions/yourls-chrome-extension/
URL della Pagina di Aiuto http://binfalse.de/software/browser-extensions/yourls-chrome-extension/
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YOURLS",
    "short_name": "YOURLS",
    "version": "2.2.2",
    "author": "Martin Scharm ",
    "description": "Shorten URLs with your own YOURLS instance",
    "icons": {
        "16": "img\/logo16.png",
        "19": "img\/logo19.png",
        "38": "img\/logo38.png",
        "48": "img\/logo48.png",
        "128": "img\/logo128.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "clipboardWrite",
        "contextMenus",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_ui": {
        "page": "options.html"
    },
    "browser_action": {
        "default_icon": {
            "16": "img\/logo16.png",
            "19": "img\/logo19.png",
            "38": "img\/logo38.png",
            "48": "img\/logo48.png",
            "128": "img\/logo128.png"
        },
        "default_title": "YOURLS",
        "default_popup": "popup.html"
    }
}