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文件

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