Slack Emoji Switcher
This extension allows the user to change emoji in the slack page.
Apa itu Slack Emoji Switcher?
Slack Emoji Switcher adalah ekstensi Chrome yang dikembangkan oleh TETRA2000, dan fitur utamanya adalah "This extension allows the user to change emoji in the slack page.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Slack Emoji Switcher
Unduh file ekstensi Slack Emoji Switcher dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
Change Slack's emoji style.
Informasi Dasar Ekstensi
Nama | Slack Emoji Switcher |
ID | pkhpifkaaibiiolelhdkhijfnkklbjoj |
URL Resmi | https://chromewebstore.google.com/detail/slack-emoji-switcher/pkhpifkaaibiiolelhdkhijfnkklbjoj |
Deskripsi | This extension allows the user to change emoji in the slack page. |
Ukuran File | 14.07 KB |
Jumlah Instalasi | 15 |
Versi Saat Ini | 1.0.1 |
Terakhir Diperbarui | 2018-02-08 |
Tanggal Publikasi | 2018-02-08 |
Pengembang | TETRA2000 |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/TETRA2000/slack-emoji-switcher |
URL Halaman Bantuan | https://github.com/TETRA2000/slack-emoji-switcher/issues |
Bahasa yang Didukung | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Slack Emoji Switcher", "description": "This extension allows the user to change emoji in the slack page.", "version": "1.0.1", "browser_action": { "default_icon": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "default_popup": "popup.html" }, "permissions": [ "activeTab", "tabs", "https:\/\/*.slack.com\/*", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/*.slack.com\/*" ], "js": [ "changeemoji.js" ] } ] } |