Chicken Smoothie Helper

A utility extension for Chicken Smoothie.

Chicken Smoothie Helper란 무엇입니까?

Chicken Smoothie Helper은(는) bethanw10에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A utility extension for Chicken Smoothie."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Chicken Smoothie Helper 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Chicken Smoothie Helper is a utility extension for chickensmoothie.com

Features:
- Select pets by date
    Choose a from date and a to date to select every pet within that range
- Select pets by rarity (now including new rarities)
    Tick every rarity you want to select, including 'Unknown' if you want to select pets without a rarity yet. This section will also show how many pets are on the page for each rarity.
    Note: for this to work you need to have 'Show pet rarities under pets when viewing pet groups' checked under the pet display settings
- Select duplicates
    Will select every pet that that appears more than once on the page. Doesn't work for pets with items. It will also select any growing pets that appear the same - even if they later split into separate outcomes
- Wishlist Helper
  Add/remove all pets, remove any owned pets or add any unowned pets on an archive page
- Page size
    Set the page size to change how many pets you want to view at a time                    

확장 프로그램 기본 정보

이름 Chicken Smoothie Helper Chicken Smoothie Helper
ID oigkinmikopkalifmhgcoijopkkiidih
공식 URL https://chromewebstore.google.com/detail/chicken-smoothie-helper/oigkinmikopkalifmhgcoijopkkiidih
설명 A utility extension for Chicken Smoothie.
파일 크기 136 KB
설치 횟수 1,246
현재 버전 1.5.7
최근 업데이트 2023-09-25
출시 날짜 2019-11-13
평점 4.86/5 총 14 개의 평점
개발자 bethanw10
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chicken Smoothie Helper",
    "short_name": "CS Helper",
    "description": "A utility extension for Chicken Smoothie.",
    "homepage_url": "https:\/\/github.com\/bethanw10",
    "manifest_version": 3,
    "action": {
        "default_title": "Chicken Smoothie Helper",
        "default_popup": "popup\/popup.html"
    },
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "64": "images\/icon-64.png",
        "128": "images\/icon-128.png"
    },
    "permissions": [
        "storage",
        "declarativeNetRequest",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/www.chickensmoothie.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.chickensmoothie.com\/accounts\/viewgroup.php*",
                "https:\/\/www.chickensmoothie.com\/archive\/*"
            ],
            "js": [
                "content-script.js",
                "\/library\/jquery.js"
            ]
        }
    ],
    "version": "1.5.7"
}