GitHub Macros

Allow the developer to easily add images and gifs to comments

GitHub Macros là gì?

GitHub Macros là một tiện ích mở rộng Chrome được phát triển bởi Avishai, và tính năng chính của nó là "Allow the developer to easily add images and gifs to comments".

Ả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 GitHub Macros

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

                        This extension enriches Github comment box. Typing "!" inside a comment box will open up a box where you'll be able to search for the right image/meme/gif you want to place inside the comment.

In addition, each media has a name and if you already know the name of the image/meme/gif you want to use, you can simply type $image/mem/gif_name$ and it will be replaced by the desired media.

Now go and make that code review process much more fun :)                    

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

Tên GitHub Macros GitHub Macros
ID nmiadikamipnmkbflmapmailmdbkfcch
URL Chính Thức https://chromewebstore.google.com/detail/github-macros/nmiadikamipnmkbflmapmailmdbkfcch
Mô tả Allow the developer to easily add images and gifs to comments
Kích Thước Tệp 99.67 KB
Số Lần Cài Đặt 79
Phiên Bản Hiện Tại 1.0.7
Cập Nhật Lần Cuối 2022-10-09
Ngày Phát Hành 2022-01-10
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Avishai
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/avishail/github-macros
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitHub Macros",
    "description": "Allow the developer to easily add images and gifs to comments",
    "version": "1.0.7",
    "version_name": "1.0.7",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "128": "\/img\/icons\/icon.png"
        }
    },
    "icons": {
        "128": "\/img\/icons\/icon.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "img\/icons\/*.png",
                "font\/*.woff2"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/gist.github.com\/*"
            ],
            "js": [
                "js\/jquery-3.6.0.min.js",
                "js\/jBox.all.min.js",
                "content.js"
            ],
            "css": [
                "css\/css.css",
                "css\/jBox.all.min.css"
            ]
        }
    ]
}