Octopatcher

Arrgh Some Patchy Goodness to GitHub

Octopatcher란 무엇입니까?

Octopatcher은(는) Mottie에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Arrgh Some Patchy Goodness to GitHub"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Octopatcher 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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