Honey Bee Toys Enhancer

Makes it easier to buy stuff from Honey Bee Toys

Honey Bee Toys Enhancer란 무엇입니까?

Honey Bee Toys Enhancer은(는) simonreye에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Makes it easier to buy stuff from Honey Bee Toys"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Honey Bee Toys Enhancer 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Adds buttons to pages on Honey Bee Toys to assist in buying items quicker                    

확장 프로그램 기본 정보

이름 Honey Bee Toys Enhancer Honey Bee Toys Enhancer
ID kkdjcpbapjcnipfkeekofplafinjhbgg
공식 URL https://chromewebstore.google.com/detail/honey-bee-toys-enhancer/kkdjcpbapjcnipfkeekofplafinjhbgg
설명 Makes it easier to buy stuff from Honey Bee Toys
파일 크기 23.33 KB
설치 횟수 11
현재 버전 1.0
최근 업데이트 2021-01-29
출시 날짜 2021-01-28
개발자 simonreye
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Honey Bee Toys Enhancer",
    "description": "Makes it easier to buy stuff from Honey Bee Toys",
    "version": "1.0",
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.honeybeetoys.com.au\/product\/*"
            ],
            "js": [
                "enhanceproduct.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/www.honeybeetoys.com.au\/customer-service\/wishlist\/"
            ],
            "js": [
                "enhancewishlist.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/www.honeybeetoys.com.au\/under-maintenance\/"
            ],
            "js": [
                "test.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": {
            "16": "images\/icon16x16.png",
            "32": "images\/icon32x32.png",
            "64": "images\/icon64x64.png",
            "128": "images\/icon128x128.png"
        },
        "default_title": "Honey Bee Toys Enhancer"
    }
}