Simple Assistant

Quality of life SimpleMMO tweaks

¿Qué es Simple Assistant?

Simple Assistant es una extensión de Chrome desarrollada por Sugar Fox, y su función principal es "Quality of life SimpleMMO tweaks".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Simple Assistant

Descarga archivos de extensión Simple Assistant 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 plugin aims to improve quality of life on multiple aspects of Simple MMO while breaking no Terms of Service. As such, this plugin has no automation and never will have, however it does have a bunch of features you might fancy 

The most important features include but are not limited to:
* Main action auto focus - just hit enter or space to step / attack / perform quest
* Chrome notifications (safe mode expired, world boss attackable, job completed)
* Daily tasks trackers  - see just how many more of which quests you have left to perform
* Daily and monthly rewards notifications - forget free rewards no more
Many more small QoL tweaks are waiting for you to be discovered

Full list of features, changelogs and source code can be found here:
https://github.com/SugarF0x/simple-assistant

All the features are optional and are disabled by default - tailor your own experience                    

Información Básica de la Extensión

Nombre Simple Assistant Simple Assistant
ID dpljccfbkelkodmmbnahgimhombjemll
URL Oficial https://chromewebstore.google.com/detail/simple-assistant/dpljccfbkelkodmmbnahgimhombjemll
Descripción Quality of life SimpleMMO tweaks
Tamaño del Archivo 99.38 KB
Cantidad de Instalaciones 361
Versión Actual 3.9.3
Última Actualización 2023-04-11
Fecha de Publicación 2020-09-12
Calificación 3.38/5 Total de 8 Calificaciones
Desarrollador Sugar Fox
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/SugarF0x/simple-assistant
URL de la Página de Ayuda https://github.com/SugarF0x/simple-assistant
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Simple Assistant",
    "version": "3.9.3",
    "version_name": "3.9.3",
    "description": "Quality of life SimpleMMO tweaks",
    "manifest_version": 3,
    "permissions": [
        "notifications",
        "alarms"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.simple-mmo.com\/*"
            ],
            "js": [
                "js\/app.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ],
    "background": {
        "service_worker": "js\/services.js"
    },
    "icons": {
        "128": "logo.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "img\/*"
            ],
            "matches": [
                "*:\/\/*.simple-mmo.com\/*"
            ]
        }
    ]
}