GifHub
Insert GIFs from Giphy.com into GitHub comments
Vad är GifHub?
GifHub är en Chrome-tillägg utvecklad av Andrew Levine, och dess huvudfunktion är "Insert GIFs from Giphy.com into GitHub comments".
Tilläggsskärmbilder
Ladda ner GifHub-förlängningens CRX-fil
Ladda ner GifHub-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
GitHub is awesome. GIFs are awesome.
1.0.8 (May 24, 2016): Fix bug preventing button from showing when editing a comment that was just added on a diff. Thanks to Paul Molluzzo for the fix.
1.0.7 (April 24, 2016): Improve page detection to prevent issues on non GH or GH Enterprise sites
1.0.6 (April 20, 2016): Fix issue caused by change in GitHub's JS Grundläggande Information om Tillägg
| Namn | |
| ID | lponagpckglibniamicamklhfkoebpeb |
| Officiell webbadress | https://chrome.google.com/webstore/detail/gifhub/lponagpckglibniamicamklhfkoebpeb |
| Beskrivning | Insert GIFs from Giphy.com into GitHub comments |
| Filstorlek | 25.84 KB |
| Antal Installationer | 452 |
| Aktuell Version | 1.0.8 |
| Senast Uppdaterad | 2016-05-24 |
| Publiceringsdatum | 2016-05-24 |
| Betyg | 3.29/5 Totalt 7 Betyg |
| Utvecklare | Andrew Levine |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/DrewML/GifHub |
| Hjälpsida URL | https://github.com/DrewML/GifHub/blob/master/README.md |
| Stödda Språk | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "GifHub",
"version": "1.0.8",
"description": "Insert GIFs from Giphy.com into GitHub comments",
"manifest_version": 2,
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"inject.js"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
"bundle.js",
"extension.css"
],
"permissions": [
"https:\/\/api.giphy.com\/v1\/*"
],
"background": {
"scripts": [
"background.js"
],
"peristent": false
}
} | |