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.

Wat is Copy URL with Title (plain text/markdown)?

Copy URL with Title (plain text/markdown) is een Chrome-extensie ontwikkeld door https://takashyx.com, en de belangrijkste functie is "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.".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Copy URL with Title (plain text/markdown)

Download Copy URL with Title (plain text/markdown)-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        --------------------------------------------------------------------------------
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
--------------------------------------------------------------------------------                    

Basisinformatie over de Extensie

Naam Copy URL with Title (plain text/markdown) Copy URL with Title (plain text/markdown)
ID bpcogbhmkdjaohcmlghhkiohmldpnkoh
Officiële URL https://chromewebstore.google.com/detail/copy-url-with-title-plain/bpcogbhmkdjaohcmlghhkiohmldpnkoh
Beschrijving 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.
Bestandsgrootte 16.72 KB
Aantal Installaties 1,343
Huidige Versie 1.1.1.1
Laatst Bijgewerkt 2022-08-20
Publicatiedatum 2020-04-02
Beoordeling 3.07/5 Totaal 14 Beoordelingen
Ontwikkelaar https://takashyx.com
E-mail [email protected]
Betalingswijze free
Extensiewebsite http://takashyx.com/portfolio/copy-url-with-title-2015/
Ondersteunde Talen 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"
        }
    ]
}