GitHub Selfies

Selfies! For GitHub! Hooray!

GitHub Selfiesとは何ですか?

GitHub Selfiesはgithub-selfies-maintainersによって開発されたChromeの拡張機能で、その主な機能は「Selfies! For GitHub! Hooray!」です。

拡張機能のスクリーンショット

screenshot

GitHub Selfies拡張機能のCRXファイルをダウンロード

GitHub Selfies拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    ]
}