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.
扩展基本信息
名称 | 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 } } |