OctoDraft

Save drafts of issues in github.

OctoDraft là gì?

OctoDraft là một tiện ích mở rộng Chrome được phát triển bởi Dan Wild, và tính năng chính của nó là "Save drafts of issues in github.".

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

screenshot

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

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

                        Adds a button to the issues section of github that allows to save a draft of your issue, in case you'd want to complete it later.

When one reports an issue, an example of code is needed. Sometimes making a minimal, reproducible example just takes time, and you don't want to get distracted. It looks something like this:

https://github.com/wildeyes/octodraft                    

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

Tên OctoDraft OctoDraft
ID mjfaidoickdplapkfhajfkehpepmccfg
URL Chính Thức https://chrome.google.com/webstore/detail/octodraft/mjfaidoickdplapkfhajfkehpepmccfg
Mô tả Save drafts of issues in github.
Kích Thước Tệp 58.54 KB
Số Lần Cài Đặt 109
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2018-10-04
Ngày Phát Hành 2018-10-04
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Dan Wild
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/wildeyes/octodraft
URL Trang Trợ Giúp https://github.com/wildeyes/octodraft
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "OctoDraft",
    "version": "1.0.1",
    "manifest_version": 2,
    "description": "Save drafts of issues in github.",
    "homepage_url": "https:\/\/github.com\/wildeyes\/octodraft",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "permissions": [
        "https:\/\/github.com\/*",
        "webNavigation"
    ],
    "background": {
        "scripts": [
            "src\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ]
}