Emojify Everything
There aren't enough emojis in your websites. This extension fixes that.
Emojify Everything là gì?
Emojify Everything là một tiện ích mở rộng Chrome được phát triển bởi jasonetco, và tính năng chính của nó là "There aren't enough emojis in your websites. This extension fixes that.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Emojify Everything
Tải xuống các tệp mở rộng Emojify Everything dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Replaces words in the webpages you visit with the corresponding emoji. You will either absolutely love or absolutely hate this.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Emojify Everything |
ID | hkahpmfkdfeceiiklfbkalcpbceccjco |
URL Chính Thức | https://chromewebstore.google.com/detail/emojify-everything/hkahpmfkdfeceiiklfbkalcpbceccjco |
Mô tả | There aren't enough emojis in your websites. This extension fixes that. |
Kích Thước Tệp | 36.48 KB |
Số Lần Cài Đặt | 39 |
Phiên Bản Hiện Tại | 1.1.5 |
Cập Nhật Lần Cuối | 2017-03-19 |
Ngày Phát Hành | 2017-03-18 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | jasonetco |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/JasonEtco/emojify-everything |
URL Trang Trợ Giúp | https://github.com/JasonEtco/emojify-everything/issues |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "1.1.5", "minimum_chrome_version": "49", "name": "Emojify Everything", "short_name": "Emojification", "description": "There aren't enough emojis in your websites. This extension fixes that.", "author": "Jason Etcovitch", "homepage_url": "https:\/\/github.com\/JasonEtco\/emojify-everything", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "browser_action": { "default_icon": "icons\/icon128.png", "default_title": "Emojify Everything", "default_popup": "popup.html" }, "permissions": [ "storage", "tabs" ], "content_scripts": [ { "js": [ "js\/simpleEmojis.js", "js\/emojis.js", "main.js" ], "matches": [ "*:\/\/*\/*" ], "run_at": "document_end" } ], "options_ui": { "page": "options.html", "chrome_style": true } } |