Octo Preview
Live preview for markdown comments in PRs/Issues on GitHub
什么是Octo Preview?
Octo Preview是由Andrew Levine开发的Chrome扩展程序,该扩展的主要功能是“Live preview for markdown comments in PRs/Issues on GitHub”。
扩展截图
下载Octo Preview扩展crx文件
下载Octo Preview扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Automatically displays live previews of comments (including rendered markdown output) as you type. Works anywhere on GitHub where you can leave a comment (including Gists). If you find any bugs, please open a new issue on the GitHub repo - https://github.com/DrewML/octo-preview/issues/new **Note** This extension relies on making HTTP requests frequently as you type to get the parsed/rendered Markdown output from GitHub. Not recommended for users on slower connections.
扩展基本信息
名称 | Octo Preview |
ID | elomekmlfonmdhmpmdfldcjgdoacjcba |
官方URL | https://chromewebstore.google.com/detail/octo-preview/elomekmlfonmdhmpmdfldcjgdoacjcba |
简介 | Live preview for markdown comments in PRs/Issues on GitHub |
文件大小 | 5.16 KB |
安装次数 | 131 |
当前版本 | 1.0.2 |
更新时间 | 2016-05-23 |
上架时间 | 2016-05-22 |
评分 | 3.00/5 共2次评分 |
开发者 | Andrew Levine |
付费类型 | free |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Octo Preview", "version": "1.0.2", "description": "Live preview for markdown comments in PRs\/Issues on GitHub", "manifest_version": 2, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "inject.js" ], "run_at": "document_idle" } ], "web_accessible_resources": [ "live-preview.js", "live-preview.css" ] } |