GitHub Comment Editor

Add editor buttons to every text comment area on GitHub.

GitHub Comment Editor là gì?

GitHub Comment Editor là một tiện ích mở rộng Chrome được phát triển bởi Frakbot, và tính năng chính của nó là "Add editor buttons to every text comment area on GitHub.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng GitHub Comment Editor

Tải xuống các tệp mở rộng GitHub Comment Editor 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

                        Add simple editor buttons and shortcuts to every comment area in GitHub (issue, code diff and commit comments):
- Bold (CTRL+B/Meta+B)
- Italic (CTRL+I/Meta+I)
- Strikethrough (CTRL+S/Meta+S)
- Heading 1 (ALT+1)
- Heading 2 (ALT+2)
- Heading 3 (ALT+3)
- Quote (CTRL+Q/Meta+Q)
- Code (CTRL+D/Meta+D)
- Link tag (CTRL+K/Meta+K)
- Image tag (CTRL+M/Meta+M)
- Unordered list (CTRL+U/Meta+U)
- Ordered list (CTRL+O/Meta+O)
- Check list (CTRL+H/Meta+H)
- Horizontal rule (CTRL+L/Meta+L)

Source code is available on GitHub: https://github.com/frakbot/chrome-github-editor.

Credits:
- jquery (http://jquery.com/)
- jquery.hotkeys (https://github.com/jeresig/jquery.hotkeys)
- font-awesome (http://fortawesome.github.io/Font-Awesome/)
- Code icon (http://thenounproject.com/term/code/18033/) by Azis from The Noun Project                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên GitHub Comment Editor GitHub Comment Editor
ID knifdnebmefnkimmiegaidobmomoalpp
URL Chính Thức https://chrome.google.com/webstore/detail/github-comment-editor/knifdnebmefnkimmiegaidobmomoalpp
Mô tả Add editor buttons to every text comment area on GitHub.
Kích Thước Tệp 385 KB
Số Lần Cài Đặt 67
Phiên Bản Hiện Tại 0.0.8
Cập Nhật Lần Cuối 2015-05-05
Ngày Phát Hành 2015-05-05
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Frakbot
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/frakbot/chrome-github-editor
URL Trang Trợ Giúp https://github.com/frakbot/chrome-github-editor/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.0.8",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "permissions": [
        "webNavigation",
        "tabs"
    ],
    "web_accessible_resources": [
        "bower_components\/font-awesome\/fonts\/*",
        "bower_components\/jquery\/dist\/jquery.min.map",
        "template.html"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/github.com\/*",
                "https:\/\/github.com\/*"
            ],
            "css": [
                "styles\/main.css",
                "styles\/font-awesome.css"
            ],
            "js": [
                "bower_components\/jquery\/dist\/jquery.min.js",
                "bower_components\/jquery.hotkeys\/jquery.hotkeys.js",
                "scripts\/contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ]
}