tldr pages

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

tldr pagesคืออะไร?

tldr pages เป็นส่วนขยายของ Chrome ที่พัฒนาโดย raul.piraces และคุณลักษณะหลักของมันคือ "Collaborative cheatsheets for console commands (tldr project) now in your Browser!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย tldr pages

ดาวน์โหลดไฟล์ส่วนขยาย tldr pages ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    }
}