Chromoji - Emojis for Google Chrome
Display emojis in Chrome
Chromoji - Emojis for Google Chromeとは何ですか?
Chromoji - Emojis for Google Chromeはahmedsohag3283によって開発されたChromeの拡張機能で、その主な機能は「Display emojis in Chrome」です。
拡張機能のスクリーンショット
Chromoji - Emojis for Google Chrome拡張機能のCRXファイルをダウンロード
Chromoji - Emojis for Google Chrome拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Show emojis in your browser. Currently supports Twitter, EmojiOne, Apple and Google emojis. Create post facebook and twitter with your emojis
拡張機能の基本情報
名前 | Chromoji - Emojis for Google Chrome |
ID | negakbijaemdgbhklopmghphgaeadmpo |
公式URL | https://chromewebstore.google.com/detail/chromoji-emojis-for-googl/negakbijaemdgbhklopmghphgaeadmpo |
説明 | Display emojis in Chrome |
ファイルサイズ | 26.12 MB |
インストール数 | 20,000 |
現在のバージョン | 1.1.0 |
最終更新日 | 2024-01-09 |
公開日 | 2016-10-26 |
評価 | 3.89/5 合計 146 レビュー |
開発者 | ahmedsohag3283 |
Eメール | [email protected] |
支払い方法 | free |
プライバシーポリシーページのURL | https://sites.google.com/view/privacy-policy-of-chromoji/home |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Display emojis in Chrome", "version": "1.1.0", "manifest_version": 3, "name": "Chromoji - Emojis for Google Chrome", "icons": { "16": "data\/images\/icon-16.png", "48": "data\/images\/icon-48.png", "128": "data\/images\/icon-128.png" }, "action": { "default_popup": "popup.html?chrome", "default_title": "Open" }, "options_ui": { "open_in_tab": true, "page": "options.html" }, "background": { "service_worker": "background-wrapper.js" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.bundle.js" ] } ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" }, "permissions": [ "storage", "declarativeNetRequest" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "web_accessible_resources": [ { "resources": [ "data\/images\/*" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ] } |