Render Whitespace on GitHub

Renders spaces as · and tabs as → in all the code on GitHub.

Render Whitespace on GitHubคืออะไร?

Render Whitespace on GitHub เป็นส่วนขยายของ Chrome ที่พัฒนาโดย glebm และคุณลักษณะหลักของมันคือ "Renders spaces as · and tabs as → in all the code on GitHub."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Render Whitespace on GitHub

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

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

                        Are they tabs? Are they spaces? How many?
Never wonder again!

Add this extension to see the whitespace on GitHub.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Render Whitespace on GitHub Render Whitespace on GitHub
ID ifdbipohclgnokjgpejhnbjdlgjkkhom
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/render-whitespace-on-gith/ifdbipohclgnokjgpejhnbjdlgjkkhom
คำอธิบาย Renders spaces as · and tabs as → in all the code on GitHub.
ขนาดไฟล์ 9.93 KB
จำนวนการติดตั้ง 586
เวอร์ชันปัจจุบัน 1.3.12
อัปเดตครั้งล่าสุด 2018-08-25
วันที่เผยแพร่ 2018-08-25
คะแนน 4.00/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา glebm
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/glebm/render-whitespace-on-github
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Render Whitespace on GitHub",
    "version": "1.3.12",
    "author": "Gleb Mazovetskiy",
    "content_scripts": [
        {
            "js": [
                "RenderWhitespaceOnGithub.user.js"
            ],
            "matches": [
                "https:\/\/gist.github.com\/*",
                "https:\/\/github.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "storage"
    ],
    "homepage_url": "https:\/\/github.com\/glebm\/render-whitespace-on-github",
    "description": "Renders spaces as \u00b7 and tabs as \u2192 in all the code on GitHub.",
    "icons": {
        "128": "icon128.png"
    }
}