Copy Rich Link

Copy the page title and URL as rich text.

Co je Copy Rich Link?

Copy Rich Link je rozšíření Chrome vyvinuté r7kamura, a jeho hlavní funkcí je „Copy the page title and URL as rich text.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Copy Rich Link

Stáhněte si soubory rozšíření Copy Rich Link ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Copy the page title and URL as rich text.

Useful for pasting links to Slack, Google Docs, etc.

## Usage

Click the extension icon or execute the keyboard shortcut to copy the link to the page as rich text.

## Keyboard shortcut

The default keyboard shortcut is Ctrl + Shift + L, and Command + Shift + L on Mac.
This can be changed from the browser's extension settings.

## Plain text fallback

As a fallback, we also copy in plain text format in the form `"{title}" {url}`,
so that if you paste where rich text is not available or paste explicitly as plain text (Ctrl + Shift + V on Windows), this plain text format will be pasted.                    

Základní Informace o Rozšíření

Název Copy Rich Link Copy Rich Link
ID hikiamlgpdcabppakpmemaofmkgknpea
Oficiální URL https://chromewebstore.google.com/detail/copy-rich-link/hikiamlgpdcabppakpmemaofmkgknpea
Popis Copy the page title and URL as rich text.
Velikost souboru 12.4 KB
Počet instalací 253
Aktuální Verze 0.1.0
Poslední Aktualizace 2022-05-07
Datum Vydání 2022-05-07
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář r7kamura
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/r7kamura/copy-rich-link
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copy Rich Link",
    "description": "Copy the page title and URL as rich text.",
    "version": "0.1.0",
    "manifest_version": 3,
    "action": {
        "default_popup": "index.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+L"
            }
        }
    },
    "permissions": [
        "activeTab",
        "clipboardWrite"
    ]
}