GitHub Selfies

Selfies! For GitHub! Hooray!

GitHub Selfies란 무엇입니까?

GitHub Selfies은(는) github-selfies-maintainers에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Selfies! For GitHub! Hooray!"입니다.

확장 프로그램 스크린샷

screenshot

GitHub Selfies 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 GitHub Selfies GitHub Selfies
ID ldnpkdnkgkogfnahcnldaedcoadjbkbl
공식 URL https://chromewebstore.google.com/detail/github-selfies/ldnpkdnkgkogfnahcnldaedcoadjbkbl
설명 Selfies! For GitHub! Hooray!
파일 크기 65.13 KB
설치 횟수 381
현재 버전 2.0.7
최근 업데이트 2020-07-12
출시 날짜 2018-12-29
평점 4.67/5 총 24 개의 평점
개발자 github-selfies-maintainers
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/thieman/github-selfies
지원되는 언어 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"
    ]
}