Octopatcher

Arrgh Some Patchy Goodness to GitHub

Octopatcherคืออะไร?

Octopatcher เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Mottie และคุณลักษณะหลักของมันคือ "Arrgh Some Patchy Goodness to GitHub"

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

screenshot
screenshot
screenshot

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

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

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

                        * Collapse Content: Adds a header to issue comments which allows toggling the view of long code and quote blocks.
* Collapse Markdown: Make all markdown headers clickable to allow toggling the view of all content between same level headers.                    

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

ชื่อ Octopatcher Octopatcher
ID lcilaoigfgceebdljpanjenhmnoijmal
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/octopatcher/lcilaoigfgceebdljpanjenhmnoijmal
คำอธิบาย Arrgh Some Patchy Goodness to GitHub
ขนาดไฟล์ 17.72 KB
จำนวนการติดตั้ง 155
เวอร์ชันปัจจุบัน 1.1.1
อัปเดตครั้งล่าสุด 2018-01-04
วันที่เผยแพร่ 2018-01-04
คะแนน 5.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา Mottie
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Mottie/Octopatcher
URL หน้าช่วยเหลือ https://github.com/Mottie/Octopatcher/tree/master/docs
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Octopatcher",
    "version": "1.1.1",
    "description": "Arrgh Some Patchy Goodness to GitHub",
    "author": "Rob Garrison",
    "manifest_version": 2,
    "homepage_url": "http:\/\/github.com\/Mottie\/Octopatcher",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "js": [
                "github-collapse-in-comment.js",
                "github-collapse-markdown.js"
            ],
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/gist.github.com\/*",
                "https:\/\/help.github.com\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "19": "images\/icon19.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}