Chicken Smoothie Assistant

Checks if your trade post is on the front page or not. Includes a quick bump button, a clear button, and a settings panel.

¿Qué es Chicken Smoothie Assistant?

Chicken Smoothie Assistant es una extensión de Chrome desarrollada por elliot, y su función principal es "Checks if your trade post is on the front page or not. Includes a quick bump button, a clear button, and a settings panel.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Chicken Smoothie Assistant

Descarga archivos de extensión Chicken Smoothie 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 extension intends to be an unofficial, all-around assistant for Chicken Smoothie! It houses  quality of life changes to the website.

In version 1.2.1, the only features it has are:
 - A column in a posts page to show if a topic is on the front page of it's forum or not.
 - A fully functional bump button on the posts page.
 - Clear posts button(clears all of your posts that it can)
 - A working settings panel to enable/disable features.
 - Personalize your bump message!

More features are in development right now!                    

Información Básica de la Extensión

Nombre Chicken Smoothie Assistant Chicken Smoothie Assistant
ID dlndlacknelkkhombcehoccclpfkpefl
URL Oficial https://chromewebstore.google.com/detail/chicken-smoothie-assistan/dlndlacknelkkhombcehoccclpfkpefl
Descripción Checks if your trade post is on the front page or not. Includes a quick bump button, a clear button, and a settings panel.
Tamaño del Archivo 44.81 KB
Cantidad de Instalaciones 704
Versión Actual 1.2.2
Última Actualización 2023-10-06
Fecha de Publicación 2021-11-04
Calificación 4.50/5 Total de 12 Calificaciones
Desarrollador elliot
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://csa.elliotcs.dev/
URL de la Página de Ayuda https://www.chickensmoothie.com/Forum/memberlist.php?mode=viewprofile&u=1019473
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chicken Smoothie Assistant",
    "description": "Checks if your trade post is on the front page or not. Includes a quick bump button, a clear button, and a settings panel.",
    "version": "1.2.2",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.chickensmoothie.com\/Forum\/search.php*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "cs-ext-styles.css"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "webNavigation",
        "storage"
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon128.png"
    },
    "action": {
        "default_icon": {
            "16": "icons\/icon16.png",
            "32": "icons\/icon32.png"
        },
        "default_title": "CS Assistant",
        "default_popup": "popup\/popup.html"
    }
}