Copy URL with Title (plain text/markdown)

Copy the title and URL in plain text/markdown format by keyboard shortcuts: Ctrl+C/Cmd+C for plain text, Alt+C/Opt+C for markdown.

Co to jest Copy URL with Title (plain text/markdown)?

Copy URL with Title (plain text/markdown) to rozszerzenie Chrome opracowane przez https://takashyx.com, a jego główną funkcją jest „Copy the title and URL in plain text/markdown format by keyboard shortcuts: Ctrl+C/Cmd+C for plain text, Alt+C/Opt+C for markdown.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Copy URL with Title (plain text/markdown)

Pobierz pliki rozszerzeń Copy URL with Title (plain text/markdown) 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

                        --------------------------------------------------------------------------------
UPDATES
--------------------------------------------------------------------------------
Ver 1.1.1.1:
FIX: Description on chrome web store

Ver 1.1.1.0:
ADD: Duration settings for notification

Ver 1.1.0.6:
FIX: Workaround for non-https pages

Ver 1.1.0.5:
FIX:   Correction of the phenomenon that text is not copied to the clipboard
ADD: Option menu
ADD: New customizable toast UI
--------------------------------------------------------------------------------
FEATURES
--------------------------------------------------------------------------------
1. Copy title and URL in text format
Control+C(Win/Linux) / Command+C(Mac)

2. Copy in markdown link format
Alt+C(Win/Linux) / Option+C(Mac)

3. Normal copy
Select -> Control+C(Win/Linux) / Command+C(Mac) 

4.Settings
Right click the extension icon -> Options
--------------------------------------------------------------------------------                    

Podstawowe informacje o rozszerzeniu

Nazwa Copy URL with Title (plain text/markdown) Copy URL with Title (plain text/markdown)
ID bpcogbhmkdjaohcmlghhkiohmldpnkoh
Oficjalny URL https://chromewebstore.google.com/detail/copy-url-with-title-plain/bpcogbhmkdjaohcmlghhkiohmldpnkoh
Opis Copy the title and URL in plain text/markdown format by keyboard shortcuts: Ctrl+C/Cmd+C for plain text, Alt+C/Opt+C for markdown.
Rozmiar pliku 16.72 KB
Liczba instalacji 1,343
Aktualna Wersja 1.1.1.1
Ostatnia Aktualizacja 2022-08-20
Data Publikacji 2020-04-02
Ocena 3.07/5 Łącznie 14 Oceny
Deweloper https://takashyx.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia http://takashyx.com/portfolio/copy-url-with-title-2015/
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Copy URL with Title (plain text\/markdown)",
    "short_name": "Copy URL with Title",
    "description": "Copy the title and URL in plain text\/markdown format by keyboard shortcuts: Ctrl+C\/Cmd+C for plain text, Alt+C\/Opt+C for markdown.",
    "version": "1.1.1.1",
    "icons": {
        "128": "icon_128.png",
        "48": "icon_048.png",
        "32": "icon_032.png",
        "16": "icon_016.png"
    },
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "copyurlwithtitle.js",
                "toast.js",
                "options.js"
            ],
            "run_at": "document_start"
        }
    ]
}