Github Wiki LiveEdit
Adding live editing features into Github wiki.
Github Wiki LiveEditとは何ですか?
Github Wiki LiveEditはYuya Hashimotoによって開発されたChromeの拡張機能で、その主な機能は「Adding live editing features into Github wiki.」です。
拡張機能のスクリーンショット
Github Wiki LiveEdit拡張機能のCRXファイルをダウンロード
Github Wiki LiveEdit拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Adding live editing features into Github wiki. 拡張機能の基本情報
| 名前 | |
| ID | hlldlinpdlhfhbdihggmipnjgbaibfnc |
| 公式URL | https://chromewebstore.google.com/detail/github-wiki-liveedit/hlldlinpdlhfhbdihggmipnjgbaibfnc |
| 説明 | Adding live editing features into Github wiki. |
| ファイルサイズ | 12.37 KB |
| インストール数 | 78 |
| 現在のバージョン | 1.0.3 |
| 最終更新日 | 2016-05-03 |
| 公開日 | 2016-05-03 |
| 評価 | 5.00/5 合計 2 レビュー |
| 開発者 | Yuya Hashimoto |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/yuya/github-wiki-live-edit |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Github Wiki LiveEdit",
"description": "Adding live editing features into Github wiki.",
"version": "1.0.3",
"background": {
"scripts": [
"js\/background.js"
]
},
"page_action": {
"default_icon": "img\/icon-19.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/github.com\/*\/wiki\/*\/_edit",
"https:\/\/github.com\/*\/wiki\/_new"
],
"css": [
"css\/style.css"
],
"js": [
"js\/content_script.js"
],
"run_at": "document_end",
"all_frames": false
}
],
"permissions": [
"tabs",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"icons": {
"16": "img\/icon-16.png",
"19": "img\/icon-19.png",
"38": "img\/[email protected]",
"32": "img\/icon-32.png",
"48": "img\/icon-48.png",
"128": "img\/icon-128.png"
},
"web_accessible_resources": [
"img\/*.png",
"img\/*.gif"
],
"manifest_version": 2
} | |