Dynalist link helper

Extension converts active tab title and URL to a Dynalist markdown, then copies it to clipboard. Example: Launching extension in…

Cos'è Dynalist link helper?

Dynalist link helper è un'estensione di Chrome sviluppata da yochees, e la sua funzione principale è "Extension converts active tab title and URL to a Dynalist markdown, then copies it to clipboard. Example: Launching extension in…".

Scarica il file CRX dell'estensione Dynalist link helper

Scarica i file di estensione Dynalist link helper in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Extension converts active tab title and URL to a Dynalist markdown, then copies it to clipboard.

Example: 
Launching extension in a page with title "My page" and URL "www.mypage.com" will generate string [My page](www.mypage.com) ready to be pasted.

For easier use - set keyboard shortchut at menu > more tools > extensions > keyboard shortcuts.                    

Informazioni di Base sull'Estensione

Nome Dynalist link helper Dynalist link helper
ID npfkmhfnnflmldbgkbkkjopapnfgmdca
URL Ufficiale https://chromewebstore.google.com/detail/dynalist-link-helper/npfkmhfnnflmldbgkbkkjopapnfgmdca
Descrizione Extension converts active tab title and URL to a Dynalist markdown, then copies it to clipboard. Example: Launching extension in…
Dimensione del File 117 KB
Conteggio Installazioni 25
Versione Corrente 0.1
Ultimo Aggiornamento 2017-11-21
Data di Pubblicazione 2017-11-21
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore yochees
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Dynalist link helper",
    "version": "0.1",
    "permissions": [
        "tabs",
        "clipboardWrite"
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.2.1.js",
                "content.js"
            ]
        }
    ]
}