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."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Hey Beter 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 Hey Beter
ID ejpilpdcahcfkhanpikmgadenjhpchem
공식 URL 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"
    ]
}