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.

什麼是Chicken Smoothie Assistant?

Chicken Smoothie Assistant是由elliot開發的Chrome擴展程式,該擴展的主要功能是“Checks if your trade post is on the front page or not. Includes a quick bump button, a clear button, and a settings panel.”。

擴展截圖

screenshot
screenshot
screenshot

下載Chicken Smoothie Assistant擴展crx文件

下載Chicken Smoothie Assistant擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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!                    

擴展基本資訊

名稱 Chicken Smoothie Assistant Chicken Smoothie Assistant
ID dlndlacknelkkhombcehoccclpfkpefl
官方網址 https://chromewebstore.google.com/detail/chicken-smoothie-assistan/dlndlacknelkkhombcehoccclpfkpefl
簡介 Checks if your trade post is on the front page or not. Includes a quick bump button, a clear button, and a settings panel.
檔案大小 44.81 KB
安裝次數 704
目前版本 1.2.2
更新時間 2023-10-06
上架時間 2021-11-04
評分 4.50/5 共 12 次評分
開發者 elliot
電子郵箱 [email protected]
付費類型 free
擴展官網 https://csa.elliotcs.dev/
說明頁面URL https://www.chickensmoothie.com/Forum/memberlist.php?mode=viewprofile&u=1019473
支援的語言 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"
    }
}