Beyond Enhancement Suite

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

Beyond Enhancement Suiteคืออะไร?

Beyond Enhancement Suite เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://joewegner.com และคุณลักษณะหลักของมันคือ "A suite of modules that make your D&D Beyond browsing experience better"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Beyond Enhancement Suite

ดาวน์โหลดไฟล์ส่วนขยาย Beyond Enhancement Suite ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
            ]
        }
    ]
}