Bingosync+
Provides multiple improvements to Bingosync.com. Notably: Theming, Integrated Timer, Anti-stars, Translation, and more!
Bingosync+とは何ですか?
Bingosync+はPapaccinoによって開発されたChromeの拡張機能で、その主な機能は「Provides multiple improvements to Bingosync.com. Notably: Theming, Integrated Timer, Anti-stars, Translation, and more!」です。
拡張機能のスクリーンショット
Bingosync+拡張機能のCRXファイルをダウンロード
Bingosync+拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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. 拡張機能の基本情報
| 名前 | |
| ID | hofapjdggopcbokpjhggekopkmmpgpkp |
| 公式URL | https://chromewebstore.google.com/detail/bingosync+/hofapjdggopcbokpjhggekopkmmpgpkp |
| 説明 | Provides multiple improvements to Bingosync.com. Notably: Theming, Integrated Timer, Anti-stars, Translation, and more! |
| ファイルサイズ | 106 KB |
| インストール数 | 210 |
| 現在のバージョン | 2.6.4 |
| 最終更新日 | 2023-09-06 |
| 公開日 | 2020-06-28 |
| 評価 | 5.00/5 合計 3 レビュー |
| 開発者 | Papaccino |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/cyrillebenoit/bingosyncplus |
| ヘルプページのURL | https://twitter.com/papaccino_gg |
| 対応言語 | 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'"
} | |