Create Link

Copy current page URL to clipboard in various formats.

Cos'è Create Link?

Create Link è un'estensione di Chrome sviluppata da ku, e la sua funzione principale è "Copy current page URL to clipboard in various formats.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Create Link

Scarica i file di estensione Create Link 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

                        (Tested on OSX, WindowsXP, Windows7/64bit)
Make HTML link tag easily like Firefox addon Make Link.

Copy current page title and URL to clipboard in various formats.
*plain text ([page title] [page URL])
*HTML link ([page title]
*markdown
*mediawiki

In extension options page, you can configure formats and shortcut key.

Source code is available at http://github.com/ku/CreateLink
Tweet @ku if something is wrong with Create Link                    

Informazioni di Base sull'Estensione

Nome Create Link Create Link
ID gcmghdmnkfdbncmnmlkkglmnnhagajbm
URL Ufficiale https://chromewebstore.google.com/detail/create-link/gcmghdmnkfdbncmnmlkkglmnnhagajbm
Descrizione Copy current page URL to clipboard in various formats.
Dimensione del File 32.25 KB
Conteggio Installazioni 40,175
Versione Corrente 0.5.7
Ultimo Aggiornamento 2022-01-12
Data di Pubblicazione 2017-07-25
Valutazione 4.25/5 Totale 166 Valutazioni
Sviluppatore ku
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://twitter.com/ku/
URL della Pagina di Aiuto http://github.com/ku/CreateLink
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Create Link",
    "version": "0.5.7",
    "manifest_version": 3,
    "background": {
        "service_worker": "js\/service-worker.js"
    },
    "action": {
        "default_icon": "icon64.png",
        "default_title": "Create Link",
        "default_popup": "popup.html"
    },
    "description": "Copy current page URL to clipboard in various formats.",
    "icons": {
        "128": "icon128.png",
        "16": "icon16.png",
        "32": "icon32.png",
        "64": "icon64.png"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*\/*"
            ],
            "css": [],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "commands": {
        "current-tab-link": {
            "description": "Current tab in default format"
        }
    },
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "permissions": [
        "contextMenus",
        "storage",
        "clipboardWrite"
    ]
}