GitHub Selfies
Selfies! For GitHub! Hooray!
Was ist GitHub Selfies?
GitHub Selfies ist eine Chrome-Erweiterung, die von github-selfies-maintainers entwickelt wurde, und ihr Hauptmerkmal ist "Selfies! For GitHub! Hooray!".
Erweiterungsscreenshots
GitHub Selfies-Erweiterungs-CRX-Datei herunterladen
Laden Sie GitHub Selfies-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | GitHub Selfies |
ID | ldnpkdnkgkogfnahcnldaedcoadjbkbl |
Offizielle URL | https://chromewebstore.google.com/detail/github-selfies/ldnpkdnkgkogfnahcnldaedcoadjbkbl |
Beschreibung | Selfies! For GitHub! Hooray! |
Dateigröße | 65.13 KB |
Installationsanzahl | 381 |
Aktuelle Version | 2.0.7 |
Letztes Update | 2020-07-12 |
Veröffentlichungsdatum | 2018-12-29 |
Bewertung | 4.67/5 Insgesamt 24 Bewertungen |
Entwickler | github-selfies-maintainers |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/thieman/github-selfies |
Unterstützte Sprachen | 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" ] } |