Bingosync+

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

O que é Bingosync+?

Bingosync+ é uma extensão do Chrome desenvolvida por Papaccino, e sua principal característica é "Provides multiple improvements to Bingosync.com. Notably: Theming, Integrated Timer, Anti-stars, Translation, and more!".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Bingosync+

Baixe arquivos de extensão Bingosync+ no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Bingosync+ Bingosync+
ID hofapjdggopcbokpjhggekopkmmpgpkp
URL Oficial https://chromewebstore.google.com/detail/bingosync+/hofapjdggopcbokpjhggekopkmmpgpkp
Descrição Provides multiple improvements to Bingosync.com. Notably: Theming, Integrated Timer, Anti-stars, Translation, and more!
Tamanho do Arquivo 106 KB
Contagem de Instalações 210
Versão Atual 2.6.4
Última Atualização 2023-09-06
Data de Publicação 2020-06-28
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor Papaccino
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/cyrillebenoit/bingosyncplus
URL da Página de Ajuda https://twitter.com/papaccino_gg
Idiomas Suportados 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'"
}