Giphy for GitHub
Giphy for GitHub gives you the ability to easily add GIFs from giphy into pull requests, issues, and other comments on GitHub.…
Was ist Giphy for GitHub?
Giphy for GitHub ist eine Chrome-Erweiterung, die von Steven Lundy entwickelt wurde, und ihr Hauptmerkmal ist "Giphy for GitHub gives you the ability to easily add GIFs from giphy into pull requests, issues, and other comments on GitHub.…".
Erweiterungsscreenshots
Giphy for GitHub-Erweiterungs-CRX-Datei herunterladen
Laden Sie Giphy for GitHub-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
Giphy for GitHub gives you the ability to easily add GIFs from giphy into pull requests, issues, and other comments on GitHub. After you have installed the extension there will be an extra button in your GitHub toolbar to insert GIFs. If you select a word or phrase and click the button, it will replace the text with a giphy on that theme. If you have nothing selected, it will insert a random giphy. If you select the ID for a specific giphy, it will insert it.
Grundlegende Informationen zur Erweiterung
Name | |
ID | njpbcacdkcomjpddllidghnpjjdjbfoh |
Offizielle URL | https://chrome.google.com/webstore/detail/giphy-for-github/njpbcacdkcomjpddllidghnpjjdjbfoh |
Beschreibung | Giphy for GitHub gives you the ability to easily add GIFs from giphy into pull requests, issues, and other comments on GitHub.… |
Dateigröße | 59.36 KB |
Installationsanzahl | 578 |
Aktuelle Version | 1.0.4 |
Letztes Update | 2019-08-21 |
Veröffentlichungsdatum | 2019-08-21 |
Bewertung | 3.17/5 Insgesamt 6 Bewertungen |
Entwickler | Steven Lundy |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Giphy for GitHub", "description": "", "version": "1.0.4", "manifest_version": 2, "permissions": [ "storage" ], "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png", "244": "icons\/icon244.png" }, "options_ui": { "page": "options.html", "chrome_style": true }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "main.js" ] } ] } |