GitHub Selfies

Selfies! For GitHub! Hooray!

Hvad er GitHub Selfies?

GitHub Selfies er en Chrome-udvidelse udviklet af github-selfies-maintainers, og dens hovedfunktion er "Selfies! For GitHub! Hooray!".

Udvidelsesskærmbilleder

screenshot

Download GitHub Selfies-udvidelses-CRX-fil

Download GitHub Selfies-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn GitHub Selfies GitHub Selfies
ID ldnpkdnkgkogfnahcnldaedcoadjbkbl
Officiel URL https://chromewebstore.google.com/detail/github-selfies/ldnpkdnkgkogfnahcnldaedcoadjbkbl
Beskrivelse Selfies! For GitHub! Hooray!
Filstørrelse 65.13 KB
Antal Installationer 381
Nuværende Version 2.0.7
Senest Opdateret 2020-07-12
Udgivelsesdato 2018-12-29
Bedømmelse 4.67/5 Samlet 24 Bedømmelser
Udvikler github-selfies-maintainers
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/thieman/github-selfies
Understøttede Sprog 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"
    ]
}