Hey Beter
Replaces half of those regular old Bs with the B emoji.
什麼是Hey Beter?
Hey Beter是由Ben Botvinick開發的Chrome擴展程式,該擴展的主要功能是“Replaces half of those regular old Bs with the B emoji.”。
擴展截圖
下載Hey Beter擴展crx文件
下載Hey Beter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
You know that feeling when you're on the web and you see a the plain old letter B? Terrible, right? Well you can kiss that feeling goodbye with the Hey Beter Chrome extension. Never again will you have to cringe as you read through a web page and see such a scandalous thing. It's eye candy, I promise! And if you get bored of it, simply disable it by clicking the icon in the toolbar. Features: • Replaces P in "Peter" (1.2.2) • Toggle (2.1.1) • Font-match mode (2.1.3) If you got a good laugh out of this extension, please rate it on the Web Store and check out my other stuff at benbotvinick.com/portfolio.
擴展基本資訊
名稱 | Hey Beter |
ID | ejpilpdcahcfkhanpikmgadenjhpchem |
官方網址 | https://chromewebstore.google.com/detail/hey-beter/ejpilpdcahcfkhanpikmgadenjhpchem |
簡介 | Replaces half of those regular old Bs with the B emoji. |
檔案大小 | 24.96 KB |
安裝次數 | 55 |
目前版本 | 2.1.7 |
更新時間 | 2019-03-09 |
上架時間 | 2019-03-08 |
評分 | 4.67/5 共 6 次評分 |
開發者 | Ben Botvinick |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | http://benbotvinick.com |
說明頁面URL | https://github.com/biggomega/hey-beter/wiki/Hey-Beter-Wiki |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Hey Beter", "short_name": "Beter", "version": "2.1.7", "description": "Replaces half of those regular old Bs with the B emoji.", "icons": { "16": "assets\/image\/icon16.png", "19": "assets\/image\/icon19.png", "48": "assets\/image\/icon48.png", "128": "assets\/image\/icon128.png" }, "browser_action": { "default_icon": "assets\/image\/icon19.png", "default_title": "Click to match font" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "permissions": [ "activeTab", "storage" ] } |