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
公式URL 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
Eメール [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"
    }
}