Bingosync+
Provides multiple improvements to Bingosync.com. Notably: Theming, Integrated Timer, Anti-stars, Translation, and more!
Qu'est-ce que Bingosync+ ?
Bingosync+ est une extension Chrome développée par Papaccino, et sa fonction principale est "Provides multiple improvements to Bingosync.com. Notably: Theming, Integrated Timer, Anti-stars, Translation, and more!".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Bingosync+
Téléchargez les fichiers d'extension Bingosync+ au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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. Informations de Base sur l'Extension
| Nom | |
| ID | hofapjdggopcbokpjhggekopkmmpgpkp |
| URL Officiel | https://chromewebstore.google.com/detail/bingosync+/hofapjdggopcbokpjhggekopkmmpgpkp |
| Description | Provides multiple improvements to Bingosync.com. Notably: Theming, Integrated Timer, Anti-stars, Translation, and more! |
| Taille du Fichier | 106 KB |
| Nombre d'Installations | 210 |
| Version Actuelle | 2.6.4 |
| Dernière Mise à Jour | 2023-09-06 |
| Date de Publication | 2020-06-28 |
| Évaluation | 5.00/5 Total 3 Évaluations |
| Développeur | Papaccino |
| [email protected] | |
| Type de Paiement | free |
| Site Web de l'Extension | https://github.com/cyrillebenoit/bingosyncplus |
| URL de la Page d'Aide | https://twitter.com/papaccino_gg |
| Langues Prises en Charge | 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'"
} | |