GitHub Selfies
Selfies! For GitHub! Hooray!
Wat is GitHub Selfies?
GitHub Selfies is een Chrome-extensie ontwikkeld door github-selfies-maintainers, en de belangrijkste functie is "Selfies! For GitHub! Hooray!".
Extensie Screenshots
Download het CRX-bestand van de extensie GitHub Selfies
Download GitHub Selfies-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | GitHub Selfies |
ID | ldnpkdnkgkogfnahcnldaedcoadjbkbl |
Officiële URL | https://chromewebstore.google.com/detail/github-selfies/ldnpkdnkgkogfnahcnldaedcoadjbkbl |
Beschrijving | Selfies! For GitHub! Hooray! |
Bestandsgrootte | 65.13 KB |
Aantal Installaties | 381 |
Huidige Versie | 2.0.7 |
Laatst Bijgewerkt | 2020-07-12 |
Publicatiedatum | 2018-12-29 |
Beoordeling | 4.67/5 Totaal 24 Beoordelingen |
Ontwikkelaar | github-selfies-maintainers |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/thieman/github-selfies |
Ondersteunde Talen | 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" ] } |