Create Link

Copy current page URL to clipboard in various formats.

Co to jest Create Link?

Create Link to rozszerzenie Chrome opracowane przez ku, a jego główną funkcją jest „Copy current page URL to clipboard in various formats.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Create Link

Pobierz pliki rozszerzeń Create Link w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        (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                    

Podstawowe informacje o rozszerzeniu

Nazwa Create Link Create Link
ID gcmghdmnkfdbncmnmlkkglmnnhagajbm
Oficjalny URL https://chromewebstore.google.com/detail/create-link/gcmghdmnkfdbncmnmlkkglmnnhagajbm
Opis Copy current page URL to clipboard in various formats.
Rozmiar pliku 32.25 KB
Liczba instalacji 40,175
Aktualna Wersja 0.5.7
Ostatnia Aktualizacja 2022-01-12
Data Publikacji 2017-07-25
Ocena 4.25/5 Łącznie 166 Oceny
Deweloper ku
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia http://twitter.com/ku/
Adres URL Strony Pomocy http://github.com/ku/CreateLink
Obsługiwane Języki 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"
    ]
}