gitphy

Put gifs in your Github issues and pull requests without leaving the textarea

gitphy là gì?

gitphy là một tiện ích mở rộng Chrome được phát triển bởi https://kevinformatics.com, và tính năng chính của nó là "Put gifs in your Github issues and pull requests without leaving the textarea".

Ả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 gitphy

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

                        Extends the markdown image syntax by allowing you to search for gifs right from Github textareas. Use the syntax ![](gif: ) to search Giphy for gifs.

Open source at: https://github.com/kevinwuhoo/gitphy.                    

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

Tên gitphy gitphy
ID kbnbfpmphfpcndlokabhemafnjhkcffc
URL Chính Thức https://chromewebstore.google.com/detail/gitphy/kbnbfpmphfpcndlokabhemafnjhkcffc
Mô tả Put gifs in your Github issues and pull requests without leaving the textarea
Kích Thước Tệp 86.94 KB
Số Lần Cài Đặt 38
Phiên Bản Hiện Tại 1.1.1
Cập Nhật Lần Cuối 2020-10-15
Ngày Phát Hành 2020-07-24
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://kevinformatics.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://kevinformatics.com/gitphy
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "gitphy",
    "version": "1.1.1",
    "manifest_version": 2,
    "description": "Put gifs in your Github issues and pull requests without leaving the textarea",
    "author": "Kevin Wu",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "css": [
                "index.css"
            ],
            "js": [
                "index.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "https:\/\/github.com\/*",
        "https:\/\/*.giphy.com\/*"
    ],
    "web_accessible_resources": [
        "giphy-attribution.png"
    ]
}