GitHub Selfies

Selfies! For GitHub! Hooray!

GitHub Selfies là gì?

GitHub Selfies là một tiện ích mở rộng Chrome được phát triển bởi github-selfies-maintainers, và tính năng chính của nó là "Selfies! For GitHub! Hooray!".

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

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

                        GitHub Selfies allows you to easily insert selfies into your pull requests, issues, and comments from your webcam! Just one click and you'll be happily spamming your coworkers and fellow open source contributors with way too many pictures of your glorious mug.                    

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

Tên GitHub Selfies GitHub Selfies
ID ldnpkdnkgkogfnahcnldaedcoadjbkbl
URL Chính Thức https://chromewebstore.google.com/detail/github-selfies/ldnpkdnkgkogfnahcnldaedcoadjbkbl
Mô tả Selfies! For GitHub! Hooray!
Kích Thước Tệp 65.13 KB
Số Lần Cài Đặt 381
Phiên Bản Hiện Tại 2.0.7
Cập Nhật Lần Cuối 2020-07-12
Ngày Phát Hành 2018-12-29
Đánh Giá 4.67/5 Tổng số 24 Đánh Giá
Nhà Phát Triển github-selfies-maintainers
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/thieman/github-selfies
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub Selfies",
    "description": "Selfies! For GitHub! Hooray!",
    "version": "2.0.7",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "*:\/\/github.com\/*",
        "https:\/\/api.imgur.com\/3\/image"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "b64.js",
                "NeuQuant.js",
                "LZWEncoder.js",
                "GIFEncoder.js",
                "selfie-base.js",
                "selfie.js"
            ],
            "css": [
                "selfie.css"
            ],
            "matches": [
                "*:\/\/github.com\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        "jquery-1.10.1.min.map",
        "new-issue.css",
        "issues.css"
    ]
}