Github Wiki LiveEdit
Adding live editing features into Github wiki.
Github Wiki LiveEdit là gì?
Github Wiki LiveEdit là một tiện ích mở rộng Chrome được phát triển bởi Yuya Hashimoto, và tính năng chính của nó là "Adding live editing features into Github wiki.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Github Wiki LiveEdit
Tải xuống các tệp mở rộng Github Wiki LiveEdit dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Adding live editing features into Github wiki.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | hlldlinpdlhfhbdihggmipnjgbaibfnc |
URL Chính Thức | https://chromewebstore.google.com/detail/github-wiki-liveedit/hlldlinpdlhfhbdihggmipnjgbaibfnc |
Mô tả | Adding live editing features into Github wiki. |
Kích Thước Tệp | 12.37 KB |
Số Lần Cài Đặt | 78 |
Phiên Bản Hiện Tại | 1.0.3 |
Cập Nhật Lần Cuối | 2016-05-03 |
Ngày Phát Hành | 2016-05-03 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | Yuya Hashimoto |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/yuya/github-wiki-live-edit |
Ngôn Ngữ Được Hỗ Trợ | 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 } |