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 là gì?

Chicken Smoothie Assistant là một tiện ích mở rộng Chrome được phát triển bởi elliot, và tính năng chính của nó là "Checks if your trade post is on the front page or not. Includes a quick bump button, a clear button, and a settings panel.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Chicken Smoothie Assistant

Tải xuống các tệp mở rộng Chicken Smoothie Assistant dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Chicken Smoothie Assistant Chicken Smoothie Assistant
ID dlndlacknelkkhombcehoccclpfkpefl
URL Chính Thức https://chromewebstore.google.com/detail/chicken-smoothie-assistan/dlndlacknelkkhombcehoccclpfkpefl
Mô tả Checks if your trade post is on the front page or not. Includes a quick bump button, a clear button, and a settings panel.
Kích Thước Tệp 44.81 KB
Số Lần Cài Đặt 704
Phiên Bản Hiện Tại 1.2.2
Cập Nhật Lần Cuối 2023-10-06
Ngày Phát Hành 2021-11-04
Đánh Giá 4.50/5 Tổng số 12 Đánh Giá
Nhà Phát Triển elliot
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://csa.elliotcs.dev/
URL Trang Trợ Giúp https://www.chickensmoothie.com/Forum/memberlist.php?mode=viewprofile&u=1019473
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}