tldr pages

Collaborative cheatsheets for console commands (tldr project) now in your Browser!

Co to jest tldr pages?

tldr pages to rozszerzenie Chrome opracowane przez raul.piraces, a jego główną funkcją jest „Collaborative cheatsheets for console commands (tldr project) now in your Browser!”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia tldr pages

Pobierz pliki rozszerzeń tldr pages 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

                        A browser extension for tldr-pages (collaborative cheatsheets for console commands).

How it works:
-  Highlight and right click a command (or right click a link) on your webpage and select "tldr-pages" in the dropdown a tooltip should appear with information fetched from the "tldr-pages" project (https://github.com/tldr-pages/tldr).                    

Podstawowe informacje o rozszerzeniu

Nazwa tldr pages tldr pages
ID fcccijijdgmmcjnifgdhcmepnkcdingf
Oficjalny URL https://chromewebstore.google.com/detail/tldr-pages/fcccijijdgmmcjnifgdhcmepnkcdingf
Opis Collaborative cheatsheets for console commands (tldr project) now in your Browser!
Rozmiar pliku 43.43 KB
Liczba instalacji 84
Aktualna Wersja 1.1.1
Ostatnia Aktualizacja 2022-01-17
Data Publikacji 2021-11-02
Ocena 4.00/5 Łącznie 1 Oceny
Deweloper raul.piraces
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://tldr-extension.developer.li/
Adres URL Strony Pomocy https://github.com/piraces/tldr-extension-browser/discussions
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "tldr pages",
    "version": "1.1.1",
    "description": "Collaborative cheatsheets for console commands (tldr project) now in your Browser!",
    "author": "Ra\u00fal Pirac\u00e9s",
    "homepage_url": "https:\/\/tldr.sh",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "node_modules\/marked\/marked.min.js",
                "node_modules\/dompurify\/dist\/purify.min.js",
                "main.js"
            ],
            "css": [
                "styles\/main.min.css"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "contextMenus"
    ],
    "action": {
        "default_icon": {
            "16": "\/icons\/icon16.png",
            "32": "\/icons\/icon32.png",
            "48": "\/icons\/icon48.png",
            "128": "\/icons\/icon128.png"
        },
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "\/icons\/icon16.png",
        "32": "\/icons\/icon32.png",
        "48": "\/icons\/icon48.png",
        "128": "\/icons\/icon128.png"
    }
}