Emojify Everything
There aren't enough emojis in your websites. This extension fixes that.
什麼是Emojify Everything?
Emojify Everything是由jasonetco開發的Chrome擴展程式,該擴展的主要功能是“There aren't enough emojis in your websites. This extension fixes that.”。
擴展截圖
下載Emojify Everything擴展crx文件
下載Emojify Everything擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Replaces words in the webpages you visit with the corresponding emoji. You will either absolutely love or absolutely hate this.
擴展基本資訊
名稱 | Emojify Everything |
ID | hkahpmfkdfeceiiklfbkalcpbceccjco |
官方網址 | https://chromewebstore.google.com/detail/emojify-everything/hkahpmfkdfeceiiklfbkalcpbceccjco |
簡介 | There aren't enough emojis in your websites. This extension fixes that. |
檔案大小 | 36.48 KB |
安裝次數 | 39 |
目前版本 | 1.1.5 |
更新時間 | 2017-03-19 |
上架時間 | 2017-03-18 |
評分 | 5.00/5 共 2 次評分 |
開發者 | jasonetco |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/JasonEtco/emojify-everything |
說明頁面URL | https://github.com/JasonEtco/emojify-everything/issues |
支援的語言 | 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 } } |