Gitmoji Browser Extension
The Gitmoji extension to easily search and copy gitmojis 😜
Gitmoji Browser Extension क्या है?
Gitmoji Browser Extension johannchopin द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "The Gitmoji extension to easily search and copy gitmojis 😜"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Gitmoji Browser Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension allow to easily search the gitmoji you want to use and then copy its shortcode or the emoji in your clipboard. Lean more about the features on https://github.com/johannchopin/gitmoji-browser-extension
एक्सटेंशन की मूल जानकारी
नाम | Gitmoji Browser Extension |
ID | lkjogeoldakjceempbkdahkojohmbaja |
आधिकारिक URL | https://chromewebstore.google.com/detail/gitmoji-browser-extension/lkjogeoldakjceempbkdahkojohmbaja |
विवरण | The Gitmoji extension to easily search and copy gitmojis 😜 |
फ़ाइल का आकार | 84.83 KB |
स्थापना संख्या | 672 |
वर्तमान संस्करण | 1.7.1 |
अंतिम अपडेट | 2021-12-05 |
प्रकाशन तिथि | 2020-07-04 |
रेटिंग | 5.00/5 कुल 7 रेटिंग्स |
डेवलपर | johannchopin |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/johannchopin/gitmoji-browser-extension |
सहायता पृष्ठ URL | https://github.com/johannchopin/gitmoji-browser-extension/issues/new/choose |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Gitmoji Browser Extension", "version": "1.7.1", "description": "The Gitmoji extension to easily search and copy gitmojis \ud83d\ude1c", "permissions": [ "activeTab", "storage" ], "browser_action": { "default_popup": "popup.html", "default_icon": "popup-icon.png" }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "manifest_version": 2, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Alt+G" }, "description": "Open the gitmoji popup" } }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*\/*\/pull\/*", "https:\/\/gitlab.com\/*\/*\/-\/merge_requests\/*" ], "js": [ "injectMergeGitmoji.js" ] } ] } |