Markdown Linker

Make it easy to copy links with markdown-format

Co to jest Markdown Linker?

Markdown Linker to rozszerzenie Chrome opracowane przez fukayatsu, a jego główną funkcją jest „Make it easy to copy links with markdown-format”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Markdown Linker

Pobierz pliki rozszerzeń Markdown Linker 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

                        - ContextMenu > Copy link with markdown-format
It works on the page, text link, or image.

-  "cmd + ctrl + c" to copy page title and url

v0.2.4 tweak for relative link
v0.2.2 tweak no-text link
v0.2.1 fix copy page
v0.2.0 add selection copy
v0.1.6 add shortcut key - "cmd + ctrl + c" to copy page title and url
v0.1.5 bug fix - cannot get link text on link with inner tag
v0.1.4 bug fix - cannot get link text on Windows                    

Podstawowe informacje o rozszerzeniu

Nazwa Markdown Linker Markdown Linker
ID kgadgjmlofjccpefhdagbonmohjknlll
Oficjalny URL https://chromewebstore.google.com/detail/markdown-linker/kgadgjmlofjccpefhdagbonmohjknlll
Opis Make it easy to copy links with markdown-format
Rozmiar pliku 257 KB
Liczba instalacji 454
Aktualna Wersja 0.2.4
Ostatnia Aktualizacja 2015-01-22
Data Publikacji 2015-01-21
Ocena 2.71/5 Łącznie 7 Oceny
Deweloper fukayatsu
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",
    "name": "Markdown Linker",
    "version": "0.2.4",
    "manifest_version": 2,
    "description": "Make it easy to copy links with markdown-format",
    "icons": {
        "48": "icon\/icon_048.png",
        "128": "icon\/icon_128.png"
    },
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-2.1.0.min.js",
                "content_script.js"
            ]
        }
    ],
    "permissions": [
        "contextMenus",
        "tabs"
    ]
}