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”。
扩展截图
下载Honey Bee Toys Enhancer扩展crx文件
下载Honey Bee Toys Enhancer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Adds buttons to pages on Honey Bee Toys to assist in buying items quicker
扩展基本信息
名称 | |
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" } } |