Beyond Enhancement Suite

A suite of modules that make your D&D Beyond browsing experience better

Beyond Enhancement Suite란 무엇입니까?

Beyond Enhancement Suite은(는) https://joewegner.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A suite of modules that make your D&D Beyond browsing experience better"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Beyond Enhancement Suite 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        BES adds a suite of enhancements to the D&D Beyond website, making it easier to browse and much more efficient for both DMs and Players.

Features:

Scroll to Top: Adds a scroll-to-top button to all long pages, if a similar button doesn't already exist for that page. Most notably adds these for filterable lists like monsters, magic items, spells, etc.

My Available Sources: Includes a new option in the Source filter input called "My Available Sources", which pre-fills all of the sources that you own (or has access to otherwise).

One-Click Character Links: Adds a list of all of your characters to the Creations dropdown, so that you can load a character sheet with a single click.

Infinite Scroll: Paginated lists (ie: monsters, spells, etc.) will automatically load more content as you scroll, instead of requiring the you to load new pages.


**BES does not implement any sort of tracking, aside from what the Chrome Web Store implements by default. We do not store your DnD Beyond information - nothing leaves your browser.**                    

확장 프로그램 기본 정보

이름 Beyond Enhancement Suite Beyond Enhancement Suite
ID mbmhdciokdfmafnlcechbnopmbfgbegl
공식 URL https://chromewebstore.google.com/detail/beyond-enhancement-suite/mbmhdciokdfmafnlcechbnopmbfgbegl
설명 A suite of modules that make your D&D Beyond browsing experience better
파일 크기 96.75 KB
설치 횟수 1,703
현재 버전 0.1.0
최근 업데이트 2019-04-16
출시 날짜 2019-04-15
평점 3.00/5 총 2 개의 평점
개발자 https://joewegner.com
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/josephwegner/bes
도움말 페이지 URL https://github.com/josephwegner/bes/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Beyond Enhancement Suite",
    "version": "0.1.0",
    "manifest_version": 2,
    "description": " A suite of modules that make your D&D Beyond browsing experience better",
    "homepage_url": "https:\/\/github.com\/josephwegner\/bes",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "page": "src\/background\/background.html",
        "persistent": false
    },
    "permissions": [
        "https:\/\/www.dndbeyond.com\/*",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.dndbeyond.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "src\/inject\/preinject.js",
                "src\/inject\/features\/characterLinks.js",
                "src\/inject\/features\/mySources.js",
                "src\/inject\/features\/sourceURL.js",
                "src\/inject\/features\/backToTop.js",
                "src\/inject\/features\/lazyLoad.js",
                "src\/inject\/inject.js"
            ],
            "css": [
                "src\/inject\/inject.css"
            ]
        }
    ]
}