Bingosync+

Provides multiple improvements to Bingosync.com. Notably: Theming, Integrated Timer, Anti-stars, Translation, and more!

Bingosync+ là gì?

Bingosync+ là một tiện ích mở rộng Chrome được phát triển bởi Papaccino, và tính năng chính của nó là "Provides multiple improvements to Bingosync.com. Notably: Theming, Integrated Timer, Anti-stars, Translation, and more!".

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

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Bingosync+

Tải xuống các tệp mở rộng Bingosync+ 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

                        This extension provides multiple improvements for Bingosync.com: custom color theming, an included timer, anti stars, screenshots, real-time indicators for multiple formats(Invasion, Draft, Row Control, and Clue), translation and goals re-arranging.                    

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

Tên Bingosync+ Bingosync+
ID hofapjdggopcbokpjhggekopkmmpgpkp
URL Chính Thức https://chromewebstore.google.com/detail/bingosync+/hofapjdggopcbokpjhggekopkmmpgpkp
Mô tả Provides multiple improvements to Bingosync.com. Notably: Theming, Integrated Timer, Anti-stars, Translation, and more!
Kích Thước Tệp 106 KB
Số Lần Cài Đặt 210
Phiên Bản Hiện Tại 2.6.4
Cập Nhật Lần Cuối 2023-09-06
Ngày Phát Hành 2020-06-28
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Papaccino
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/cyrillebenoit/bingosyncplus
URL Trang Trợ Giúp https://twitter.com/papaccino_gg
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Bingosync+",
    "version": "2.6.4",
    "description": "Provides multiple improvements to Bingosync.com. Notably: Theming, Integrated Timer, Anti-stars, Translation, and more!",
    "icons": {
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.bingosync.com\/room\/*",
                "*:\/\/*.bingosync.bingothon.com\/room\/*",
                "*:\/\/*.bingo.saesr.events\/room\/*"
            ],
            "css": [
                "styles\/antistar.css",
                "styles\/clue.css",
                "styles\/invasion.css",
                "styles\/timer.css"
            ],
            "js": [
                "scripts\/loadLists.js",
                "scripts\/antistar.js",
                "scripts\/blinddraft.js",
                "scripts\/clue.js",
                "scripts\/draft.js",
                "scripts\/rowcontrol.js",
                "scripts\/invasion.js",
                "scripts\/ordering.js",
                "scripts\/timer.js",
                "scripts\/translate.js",
                "scripts\/theme.js",
                "scripts\/boardFunctions.js",
                "libraries\/dom-to-img.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "assets\/antistar.png"
    ],
    "page_action": {
        "default_title": "Bingosync+",
        "default_popup": "pageAction\/action.html",
        "default_icon": "icons\/48.png",
        "show_matches": [
            "*:\/\/*.bingosync.com\/room\/*",
            "*:\/\/*.bingosync.bingothon.com\/room\/*",
            "*:\/\/*.bingo.saesr.events\/room\/*"
        ]
    },
    "permissions": [
        "declarativeContent",
        "tabs",
        "https:\/\/raw.githubusercontent.com\/*",
        "clipboardWrite"
    ],
    "options_ui": {
        "open_in_tab": true,
        "page": "options\/page.html"
    },
    "content_security_policy": "script-src 'self' https:\/\/cdnjs.cloudflare.com; object-src 'self'"
}