GifHub
Insert GIFs from Giphy.com into GitHub comments
GifHub क्या है?
GifHub Andrew Levine द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Insert GIFs from Giphy.com into GitHub comments"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में GifHub एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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
एक्सटेंशन की मूल जानकारी
नाम | |
ID | lponagpckglibniamicamklhfkoebpeb |
आधिकारिक URL | https://chrome.google.com/webstore/detail/gifhub/lponagpckglibniamicamklhfkoebpeb |
विवरण | Insert GIFs from Giphy.com into GitHub comments |
फ़ाइल का आकार | 25.84 KB |
स्थापना संख्या | 452 |
वर्तमान संस्करण | 1.0.8 |
अंतिम अपडेट | 2016-05-24 |
प्रकाशन तिथि | 2016-05-24 |
रेटिंग | 3.29/5 कुल 7 रेटिंग्स |
डेवलपर | Andrew Levine |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/DrewML/GifHub |
सहायता पृष्ठ URL | https://github.com/DrewML/GifHub/blob/master/README.md |
समर्थित भाषाएँ | 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 } } |