Create Link

Copy current page URL to clipboard in various formats.

Was ist Create Link?

Create Link ist eine Chrome-Erweiterung, die von ku entwickelt wurde, und ihr Hauptmerkmal ist "Copy current page URL to clipboard in various formats.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Create Link-Erweiterungs-CRX-Datei herunterladen

Laden Sie Create Link-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        (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                    

Grundlegende Informationen zur Erweiterung

Name Create Link Create Link
ID gcmghdmnkfdbncmnmlkkglmnnhagajbm
Offizielle URL https://chromewebstore.google.com/detail/create-link/gcmghdmnkfdbncmnmlkkglmnnhagajbm
Beschreibung Copy current page URL to clipboard in various formats.
Dateigröße 32.25 KB
Installationsanzahl 40,175
Aktuelle Version 0.5.7
Letztes Update 2022-01-12
Veröffentlichungsdatum 2017-07-25
Bewertung 4.25/5 Insgesamt 166 Bewertungen
Entwickler ku
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite http://twitter.com/ku/
Hilfeseite URL http://github.com/ku/CreateLink
Unterstützte Sprachen 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"
    ]
}