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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย elliot และคุณลักษณะหลักของมันคือ "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

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Chicken Smoothie Assistant

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    }
}