tldr pages

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

tldr pages क्या है?

tldr pages raul.piraces द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Collaborative cheatsheets for console commands (tldr project) now in your Browser!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में tldr pages एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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

एक्सटेंशन की मूल जानकारी

नाम tldr pages tldr pages
ID fcccijijdgmmcjnifgdhcmepnkcdingf
आधिकारिक URL https://chromewebstore.google.com/detail/tldr-pages/fcccijijdgmmcjnifgdhcmepnkcdingf
विवरण Collaborative cheatsheets for console commands (tldr project) now in your Browser!
फ़ाइल का आकार 43.43 KB
स्थापना संख्या 84
वर्तमान संस्करण 1.1.1
अंतिम अपडेट 2022-01-17
प्रकाशन तिथि 2021-11-02
रेटिंग 4.00/5 कुल 1 रेटिंग्स
डेवलपर raul.piraces
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://tldr-extension.developer.li/
सहायता पृष्ठ URL https://github.com/piraces/tldr-extension-browser/discussions
समर्थित भाषाएँ 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"
    }
}