DnD Beyond Game Log

Open the Game Log from the campaigns page on DnD Beyond and remove all other content from the page.

¿Qué es DnD Beyond Game Log?

DnD Beyond Game Log es una extensión de Chrome desarrollada por alexander.saurber, y su función principal es "Open the Game Log from the campaigns page on DnD Beyond and remove all other content from the page.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión DnD Beyond Game Log

Descarga archivos de extensión DnD Beyond Game Log en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        This extension modifies the DnD Beyond campaign page when you click the "Game Log" button. Upon loading the page, it adds an event listener to wait for the Game Log button to be clicked. Once clicked, it removes all content from the page except the Game Log messages, and styles them to a dark mode with more subtle colors for all of the colored dice roll effects.                    

Información Básica de la Extensión

Nombre DnD Beyond Game Log DnD Beyond Game Log
ID dckkobfhocjadfiinhkklfkljepejahf
URL Oficial https://chromewebstore.google.com/detail/dnd-beyond-game-log/dckkobfhocjadfiinhkklfkljepejahf
Descripción Open the Game Log from the campaigns page on DnD Beyond and remove all other content from the page.
Tamaño del Archivo 17.71 KB
Cantidad de Instalaciones 173
Versión Actual 1.0.0
Última Actualización 2023-07-11
Fecha de Publicación 2023-07-10
Desarrollador alexander.saurber
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "DnD Beyond Game Log",
    "version": "1.0.0",
    "description": "Open the Game Log from the campaigns page on DnD Beyond and remove all other content from the page.",
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "content_scripts": [
        {
            "js": [
                "scripts\/content.js"
            ],
            "matches": [
                "https:\/\/www.dndbeyond.com\/campaigns\/*"
            ],
            "css": [
                "scripts\/style.css"
            ]
        }
    ]
}