Bondage Club Tools

Enriches the experience for Bondage Club.

Bondage Club Tools란 무엇입니까?

Bondage Club Tools은(는) Dutchie에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enriches the experience for Bondage Club."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Bondage Club Tools 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Adds a popup which displays the current characters in the chat room, and an overview of your online friends.

Includes chat and whisper logging which is stored locally, meaning that your chat logs never leave your computer. There is an interface to browse through past chat sessions as well.

An overview of people you've met in the chat rooms gives you the opportunity to keep notes on them or read back their profile.

The extension can also be configured to show notifications when someone mentions a certain word in chat and you're not looking.

The overview of chat rooms can optionally be automatically refreshed with a configurable interval. Disabled by default, however, and can be enabled through the options page.

No information about your account, your chat logs nor your friends ever leaves your computer. Given the nature of the game, I believe that any sort of tracking, logging or analytics has no place in this extension. Feedback is always welcomed and can be given through GitHub.                    

확장 프로그램 기본 정보

이름 Bondage Club Tools Bondage Club Tools
ID pgigbkbcecbpgijnfhmpmkipgondpnpc
공식 URL https://chrome.google.com/webstore/detail/bondage-club-tools/pgigbkbcecbpgijnfhmpmkipgondpnpc
설명 Enriches the experience for Bondage Club.
파일 크기 433 KB
설치 횟수 458
현재 버전 0.5.0
최근 업데이트 2023-03-27
출시 날짜 2020-10-31
평점 5.00/5 총 2 개의 평점
개발자 Dutchie
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Dutchie322/bclub-tools
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bondage Club Tools",
    "description": "Enriches the experience for Bondage Club.",
    "version": "0.5.0",
    "manifest_version": 2,
    "icons": {
        "128": "assets\/bclub-logo.png"
    },
    "background": {
        "scripts": [
            "background\/main.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Bondage Club Tools",
        "default_icon": {
            "128": "assets\/bclub-logo.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.bondageprojects.com\/*",
                "*:\/\/*.bondageprojects.elementfx.com\/*",
                "*:\/\/*.bondage-europe.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "content-script\/main.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "activeTab",
        "notifications",
        "storage",
        "unlimitedStorage",
        "*:\/\/*.bondageprojects.com\/*",
        "*:\/\/*.bondageprojects.elementfx.com\/*",
        "*:\/\/*.bondage-europe.com\/*"
    ],
    "options_ui": {
        "browser_style": false,
        "open_in_tab": true,
        "page": "index.html?page=\/options"
    }
}