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 |
官方網址 | 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" ] } |