gitphy
Put gifs in your Github issues and pull requests without leaving the textarea
gitphy क्या है?
gitphy https://kevinformatics.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Put gifs in your Github issues and pull requests without leaving the textarea"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में gitphy एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Extends the markdown image syntax by allowing you to search for gifs right from Github textareas. Use the syntax ![](gif:) to search Giphy for gifs. Open source at: https://github.com/kevinwuhoo/gitphy.
एक्सटेंशन की मूल जानकारी
नाम | gitphy |
ID | kbnbfpmphfpcndlokabhemafnjhkcffc |
आधिकारिक URL | https://chromewebstore.google.com/detail/gitphy/kbnbfpmphfpcndlokabhemafnjhkcffc |
विवरण | Put gifs in your Github issues and pull requests without leaving the textarea |
फ़ाइल का आकार | 86.94 KB |
स्थापना संख्या | 38 |
वर्तमान संस्करण | 1.1.1 |
अंतिम अपडेट | 2020-10-15 |
प्रकाशन तिथि | 2020-07-24 |
रेटिंग | 5.00/5 कुल 2 रेटिंग्स |
डेवलपर | https://kevinformatics.com |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | http://kevinformatics.com/gitphy |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "gitphy", "version": "1.1.1", "manifest_version": 2, "description": "Put gifs in your Github issues and pull requests without leaving the textarea", "author": "Kevin Wu", "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "css": [ "index.css" ], "js": [ "index.js" ], "run_at": "document_end" } ], "permissions": [ "https:\/\/github.com\/*", "https:\/\/*.giphy.com\/*" ], "web_accessible_resources": [ "giphy-attribution.png" ] } |