GitHub Selfies
Selfies! For GitHub! Hooray!
Co to jest GitHub Selfies?
GitHub Selfies to rozszerzenie Chrome opracowane przez github-selfies-maintainers, a jego główną funkcją jest „Selfies! For GitHub! Hooray!”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia GitHub Selfies
Pobierz pliki rozszerzeń GitHub Selfies w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | GitHub Selfies |
ID | ldnpkdnkgkogfnahcnldaedcoadjbkbl |
Oficjalny URL | https://chromewebstore.google.com/detail/github-selfies/ldnpkdnkgkogfnahcnldaedcoadjbkbl |
Opis | Selfies! For GitHub! Hooray! |
Rozmiar pliku | 65.13 KB |
Liczba instalacji | 381 |
Aktualna Wersja | 2.0.7 |
Ostatnia Aktualizacja | 2020-07-12 |
Data Publikacji | 2018-12-29 |
Ocena | 4.67/5 Łącznie 24 Oceny |
Deweloper | github-selfies-maintainers |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/thieman/github-selfies |
Obsługiwane Języki | 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" ] } |