GitHub Emoji
A chrome extension for the github emoji picker with fun.
Cos'è GitHub Emoji?
GitHub Emoji è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "A chrome extension for the github emoji picker with fun.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione GitHub Emoji
Scarica i file di estensione GitHub Emoji in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
See https://github.com/FishPlusOrange/github-emoji for details. Informazioni di Base sull'Estensione
| Nome | |
| ID | pfhcnffadoajdcedindnjcladkokgfpo |
| URL Ufficiale | https://chromewebstore.google.com/detail/github-emoji/pfhcnffadoajdcedindnjcladkokgfpo |
| Descrizione | A chrome extension for the github emoji picker with fun. |
| Dimensione del File | 907 KB |
| Conteggio Installazioni | 37 |
| Versione Corrente | 1.1.1 |
| Ultimo Aggiornamento | 2020-03-30 |
| Data di Pubblicazione | 2020-03-30 |
| Sviluppatore | Unknown |
| Tipo di Pagamento | free |
| Lingue Supportate | 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"
}
} | |