tldr pages

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

What is tldr pages?

tldr pages is a Chrome extension developed by raul.piraces, and its main feature is "Collaborative cheatsheets for console commands (tldr project) now in your Browser!".

Extension Screenshots

screenshot
screenshot

Download tldr pages Extension CRX File

Download tldr pages extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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).                    

Extension Basic Information

Name tldr pages tldr pages
ID fcccijijdgmmcjnifgdhcmepnkcdingf
Official URL https://chromewebstore.google.com/detail/tldr-pages/fcccijijdgmmcjnifgdhcmepnkcdingf
Description Collaborative cheatsheets for console commands (tldr project) now in your Browser!
File Size 43.43 KB
Installation Count 84
Current Version 1.1.1
Last Updated 2022-01-17
Publish Date 2021-11-02
Rating 4.00/5 Total 1 Ratings
Developer raul.piraces
Email [email protected]
Payment Type free
Extension Website https://tldr-extension.developer.li/
Help Page URL https://github.com/piraces/tldr-extension-browser/discussions
Supported Languages 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"
    }
}