Dynalist link helper

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

Co to jest Dynalist link helper?

Dynalist link helper to rozszerzenie Chrome opracowane przez yochees, a jego główną funkcją jest „Extension converts active tab title and URL to a Dynalist markdown, then copies it to clipboard. Example: Launching extension in…”.

Pobierz plik CRX rozszerzenia Dynalist link helper

Pobierz pliki rozszerzeń Dynalist link helper 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

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Dynalist link helper Dynalist link helper
ID npfkmhfnnflmldbgkbkkjopapnfgmdca
Oficjalny URL https://chromewebstore.google.com/detail/dynalist-link-helper/npfkmhfnnflmldbgkbkkjopapnfgmdca
Opis Extension converts active tab title and URL to a Dynalist markdown, then copies it to clipboard. Example: Launching extension in…
Rozmiar pliku 117 KB
Liczba instalacji 25
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2017-11-21
Data Publikacji 2017-11-21
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper yochees
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}