Octopatcher

Arrgh Some Patchy Goodness to GitHub

什麼是Octopatcher?

Octopatcher是由Mottie開發的Chrome擴展程式,該擴展的主要功能是“Arrgh Some Patchy Goodness to GitHub”。

擴展截圖

screenshot
screenshot
screenshot

下載Octopatcher擴展crx文件

下載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
官方網址 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
    }
}