Redmine Wiki LiveEdit
This extension add live editing features in Redmine wiki
What is Redmine Wiki LiveEdit?
Redmine Wiki LiveEdit is a Chrome extension developed by http://yuya.im, and its main feature is "This extension add live editing features in Redmine wiki".
Download Redmine Wiki LiveEdit Extension CRX File
Download Redmine Wiki LiveEdit extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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 ========================= * リリースしました。
Extension Basic Information
Name | |
ID | cnnanejmmngfgcjbcjkndbpcikkjonob |
Official URL | https://chrome.google.com/webstore/detail/redmine-wiki-liveedit/cnnanejmmngfgcjbcjkndbpcikkjonob |
Description | This extension add live editing features in Redmine wiki |
File Size | 10.76 KB |
Installation Count | 83 |
Current Version | 1.0.6 |
Last Updated | 2016-12-14 |
Publish Date | 2016-12-14 |
Rating | 4.50/5 Total 2 Ratings |
Developer | http://yuya.im |
[email protected] | |
Payment Type | free |
Supported Languages | 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 } |