GitHub Emoji
A chrome extension for the github emoji picker with fun.
Qu'est-ce que GitHub Emoji ?
GitHub Emoji est une extension Chrome développée par Unknown, et sa fonction principale est "A chrome extension for the github emoji picker with fun.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension GitHub Emoji
Téléchargez les fichiers d'extension GitHub Emoji au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
See https://github.com/FishPlusOrange/github-emoji for details.
Informations de Base sur l'Extension
Nom | GitHub Emoji |
ID | pfhcnffadoajdcedindnjcladkokgfpo |
URL Officiel | https://chromewebstore.google.com/detail/github-emoji/pfhcnffadoajdcedindnjcladkokgfpo |
Description | A chrome extension for the github emoji picker with fun. |
Taille du Fichier | 907 KB |
Nombre d'Installations | 37 |
Version Actuelle | 1.1.1 |
Dernière Mise à Jour | 2020-03-30 |
Date de Publication | 2020-03-30 |
Développeur | Unknown |
Type de Paiement | free |
Langues Prises en Charge | zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GitHub Emoji", "version": "1.1.1", "manifest_version": 2, "description": "A chrome extension for the github emoji picker with fun.", "homepage_url": "https:\/\/github.com\/FishPlusOrange\/github-emoji", "icons": { "16": "images\/octocat.png", "48": "images\/octocat.png", "128": "images\/octocat.png" }, "background": { "scripts": [ "scripts\/background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/github.com\/*", "*:\/\/gist.github.com\/*" ], "js": [ "scripts\/content-script.js" ], "run_at": "document_end" } ], "page_action": { "default_title": "GitHub Emoji", "default_popup": "popup.html" } } |