GitHub Selfies
Selfies! For GitHub! Hooray!
What is GitHub Selfies?
GitHub Selfies is a Chrome extension developed by github-selfies-maintainers, and its main feature is "Selfies! For GitHub! Hooray!".
Extension Screenshots
Download GitHub Selfies Extension CRX File
Download GitHub Selfies extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | GitHub Selfies |
ID | ldnpkdnkgkogfnahcnldaedcoadjbkbl |
Official URL | https://chromewebstore.google.com/detail/github-selfies/ldnpkdnkgkogfnahcnldaedcoadjbkbl |
Description | Selfies! For GitHub! Hooray! |
File Size | 65.13 KB |
Installation Count | 381 |
Current Version | 2.0.7 |
Last Updated | 2020-07-12 |
Publish Date | 2018-12-29 |
Rating | 4.67/5 Total 24 Ratings |
Developer | github-selfies-maintainers |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/thieman/github-selfies |
Supported Languages | 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" ] } |