Redmine Wiki LiveEdit
This extension add live editing features in Redmine wiki
Redmine Wiki LiveEditとは何ですか?
Redmine Wiki LiveEditはhttp://yuya.imによって開発されたChromeの拡張機能で、その主な機能は「This extension add live editing features in Redmine wiki」です。
Redmine Wiki LiveEdit拡張機能のCRXファイルをダウンロード
Redmine Wiki LiveEdit拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Redmine の wiki をライブ編集にします
https://github.com/yuya/redmine-wiki-live-edit
[History]
Version 1.0.6: 2016/12/15
=========================
* 特定のバージョンで動作しない不具合を修正しました。 (thanks to @ken39arg)
Version 1.0.5: 2014/01/06
=========================
* 最新の Chrome にてレンダリングが不安定になる部分を調整しました。
Version 1.0.4: 2013/09/15
=========================
* Redmine 2.1 以降で動作しない不具合を修正しました。
Version 1.0.3: 2013/08/27
=========================
* 段落ごとの編集に対応しました。
Version 1.0.2: 2013/08/26
=========================
* 不備アリアリのファイルが含まれていたのを修正しました。大変失礼いたしました。
Version 1.0.1: 2013/08/26
=========================
* 処理が走ったり走らなかったり気まぐれシェフ風なのを修正しました。
Version 1.0.0: 2013/08/26
=========================
* リリースしました。 拡張機能の基本情報
| 名前 | |
| ID | cnnanejmmngfgcjbcjkndbpcikkjonob |
| 公式URL | https://chrome.google.com/webstore/detail/redmine-wiki-liveedit/cnnanejmmngfgcjbcjkndbpcikkjonob |
| 説明 | This extension add live editing features in Redmine wiki |
| ファイルサイズ | 10.76 KB |
| インストール数 | 83 |
| 現在のバージョン | 1.0.6 |
| 最終更新日 | 2016-12-14 |
| 公開日 | 2016-12-14 |
| 評価 | 4.50/5 合計 2 レビュー |
| 開発者 | http://yuya.im |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | ja |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Redmine Wiki LiveEdit",
"description": "This extension add live editing features in Redmine wiki",
"version": "1.0.6",
"background": {
"scripts": [
"background.js"
]
},
"page_action": {
"default_icon": "icon\/icon-19.png",
"default_title": "Enable live editing features in redmine wiki"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"content_script.js"
],
"run_at": "document_end",
"all_frames": false
}
],
"permissions": [
"tabs",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"icons": {
"19": "icon\/icon-19.png",
"48": "icon\/icon-48.png",
"128": "icon\/icon-128.png"
},
"manifest_version": 2
} | |