扇贝助手v2

基于shanbay网页API查询并加入单词到生词本的应用

扇贝助手v2 là gì?

扇贝助手v2 là một tiện ích mở rộng Chrome được phát triển bởi https://maicss.com, và tính năng chính của nó là "基于shanbay网页API查询并加入单词到生词本的应用".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng 扇贝助手v2

Tải xuống các tệp mở rộng 扇贝助手v2 dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        注意:必须拥有 shanbay 网账号并登录 shanbay 之后才可以使用本插件

1,网页上【双击】或【选中后右键】单词会显示单词中英文释义
2,查询到的单词可以添加到 shanbay 的个人生词本
3,项目地址:https://github.com/maicss/chrome-shanbay-v2
4,Chrome 版本必须大于等于88                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên 扇贝助手v2 扇贝助手v2
ID pkibohmmnmpgbnaoappgndlfncanookc
URL Chính Thức https://chromewebstore.google.com/detail/%E6%89%87%E8%B4%9D%E5%8A%A9%E6%89%8Bv2/pkibohmmnmpgbnaoappgndlfncanookc
Mô tả 基于shanbay网页API查询并加入单词到生词本的应用
Kích Thước Tệp 52.87 KB
Số Lần Cài Đặt 331
Phiên Bản Hiện Tại 2.1.9
Cập Nhật Lần Cuối 2023-12-28
Ngày Phát Hành 2019-03-20
Đánh Giá 4.50/5 Tổng số 8 Đánh Giá
Nhà Phát Triển https://maicss.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/maicss/chrome-shanbay-v2
URL Trang Trợ Giúp https://github.com/maicss/chrome-shanbay-v2/issues
URL Trang Chính Sách Bảo Mật https://maicss.com/shanbay-extension-privacy-policy.html
Ngôn Ngữ Được Hỗ Trợ zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "\u6247\u8d1d\u52a9\u624bv2",
    "version": "2.1.9",
    "author": "maicss [email protected] https:\/\/github.com\/maicss",
    "manifest_version": 3,
    "description": "\u57fa\u4e8eshanbay\u7f51\u9875API\u67e5\u8be2\u5e76\u52a0\u5165\u5355\u8bcd\u5230\u751f\u8bcd\u672c\u7684\u5e94\u7528",
    "icons": {
        "48": "images\/icon_48.png"
    },
    "background": {
        "service_worker": "js\/background.js",
        "type": "module"
    },
    "commands": {
        "look-up-in-shanbay": {
            "description": "Look up a word in shanbay"
        }
    },
    "action": {
        "default_icon": "images\/icon_48.png",
        "default_popup": "popup.html",
        "default_title": "\u6247\u8d1d\u52a9\u624bv2"
    },
    "minimum_chrome_version": "88",
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "js\/const.mjs"
            ]
        }
    ],
    "content_scripts": [
        {
            "css": [
                "css\/popover.css"
            ],
            "js": [
                "js\/main.mjs"
            ],
            "matches": [
                ""
            ],
            "exclude_matches": [
                "*:\/\/*.shanbay.com\/*",
                "*:\/\/*.hjenglish.com\/*",
                "*:\/\/*.codepen.io\/*",
                "*:\/\/*.jsfiddle.net\/*",
                "*:\/\/*.jsbin.com\/*",
                "*:\/\/*.codesandbox.io\/*",
                "*:\/\/*.github1s.com\/*"
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/*.shanbay.com\/"
    ],
    "permissions": [
        "cookies",
        "contextMenus",
        "storage",
        "alarms",
        "notifications",
        "offscreen",
        "scripting",
        "activeTab"
    ]
}