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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}