Octopatcher
Arrgh Some Patchy Goodness to GitHub
Octopatcherとは何ですか?
OctopatcherはMottieによって開発されたChromeの拡張機能で、その主な機能は「Arrgh Some Patchy Goodness to GitHub」です。
拡張機能のスクリーンショット
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. 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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
}
} | |