Bingosync+
Provides multiple improvements to Bingosync.com. Notably: Theming, Integrated Timer, Anti-stars, Translation, and more!
Was ist Bingosync+?
Bingosync+ ist eine Chrome-Erweiterung, die von Papaccino entwickelt wurde, und ihr Hauptmerkmal ist "Provides multiple improvements to Bingosync.com. Notably: Theming, Integrated Timer, Anti-stars, Translation, and more!".
Erweiterungsscreenshots
Bingosync+-Erweiterungs-CRX-Datei herunterladen
Laden Sie Bingosync+-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | hofapjdggopcbokpjhggekopkmmpgpkp |
| Offizielle URL | https://chromewebstore.google.com/detail/bingosync+/hofapjdggopcbokpjhggekopkmmpgpkp |
| Beschreibung | Provides multiple improvements to Bingosync.com. Notably: Theming, Integrated Timer, Anti-stars, Translation, and more! |
| Dateigröße | 106 KB |
| Installationsanzahl | 210 |
| Aktuelle Version | 2.6.4 |
| Letztes Update | 2023-09-06 |
| Veröffentlichungsdatum | 2020-06-28 |
| Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
| Entwickler | Papaccino |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/cyrillebenoit/bingosyncplus |
| Hilfeseite URL | https://twitter.com/papaccino_gg |
| Unterstützte Sprachen | 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'"
} | |