Dynalist link helper

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

Co je Dynalist link helper?

Dynalist link helper je rozšíření Chrome vyvinuté yochees, a jeho hlavní funkcí je „Extension converts active tab title and URL to a Dynalist markdown, then copies it to clipboard. Example: Launching extension in…“.

Stáhnout soubor CRX rozšíření Dynalist link helper

Stáhněte si soubory rozšíření Dynalist link helper 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í

                        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.                    

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

Název Dynalist link helper Dynalist link helper
ID npfkmhfnnflmldbgkbkkjopapnfgmdca
Oficiální URL https://chromewebstore.google.com/detail/dynalist-link-helper/npfkmhfnnflmldbgkbkkjopapnfgmdca
Popis Extension converts active tab title and URL to a Dynalist markdown, then copies it to clipboard. Example: Launching extension in…
Velikost souboru 117 KB
Počet instalací 25
Aktuální Verze 0.1
Poslední Aktualizace 2017-11-21
Datum Vydání 2017-11-21
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář yochees
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
            ]
        }
    ]
}