Sylestia Extension (Full Version!)

Extension for Sylestia.

Sylestia Extension (Full Version!)คืออะไร?

Sylestia Extension (Full Version!) เป็นส่วนขยายของ Chrome ที่พัฒนาโดย taptothebeat และคุณลักษณะหลักของมันคือ "Extension for Sylestia."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Sylestia Extension (Full Version!)

ดาวน์โหลดไฟล์ส่วนขยาย Sylestia Extension (Full Version!) ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Last Update: Version 3.5
- Added new feature. Viewing a user's id next to their username on a forum post.
- Fixed forum image BBCode buttons

General Description And Use:
How to use the extension is listed in this forum thread: https://www.sylestia.com/forums/?thread=37255 Or read the below for descriptions on the different options.

Wardrobe: 
- Adds a navigation of buttons below the items on the wardrobe page

Stable:
- Button: Generates BBCode forum link for the current stable and tab you are in
- Button: See what your adult pets would look like as hatchlings

Hatchery:
- Button: See what your hatchling pets would look like as adults

Pet Profile:
- Button: Shows images of how your pet would look like with its hidden traits visible.
- **Automatically** show all pets as adults on their profile page.
- Button: Generates pretty forum BBcode of a link to your pet!

Explore Zone: 
For additional hotkeys:
- Use , . / to select enemies. Top, Middle, Bottom respectively.
- Use r AND e to dismiss popups such as chests, going on boats, etc. (Works in most cases)                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Sylestia Extension (Full Version!) Sylestia Extension (Full Version!)
ID phhplkknbklebdecmibhipcdkkaeicfi
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/sylestia-extension-full-v/phhplkknbklebdecmibhipcdkkaeicfi
คำอธิบาย Extension for Sylestia.
ขนาดไฟล์ 79.58 KB
จำนวนการติดตั้ง 1,235
เวอร์ชันปัจจุบัน 3.5
อัปเดตครั้งล่าสุด 2019-07-04
วันที่เผยแพร่ 2019-07-04
คะแนน 5.00/5 รวมทั้งหมด 11 คะแนน
ผู้พัฒนา taptothebeat
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://www.sylestia.com/forums/?thread=37255
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Sylestia Extension (Full Version!)",
    "version": "3.5",
    "manifest_version": 2,
    "author": "taptothebeat",
    "icons": {
        "48": "icon-48.png"
    },
    "description": "Extension for Sylestia.",
    "browser_action": {
        "default_icon": "icon-48.png",
        "default_popup": "options.html"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "storage",
        "https:\/\/www.sylestia.com\/account\/wardrobe\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.sylestia.com\/view\/hatchery\/*"
            ],
            "js": [
                "usefulFunctions.js",
                "hatcheryImagesAsAdults.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.sylestia.com\/view\/pets\/?petid*"
            ],
            "js": [
                "jquery.js",
                "usefulFunctions.js",
                "petProfilePageBBCode.js",
                "petProfilePageShowHiddens.js",
                "displayAdultOnProfile.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.sylestia.com\/search*"
            ],
            "js": [
                "usefulFunctions.js",
                "searchBBCode.js",
                "searchAdultToHatchling.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.sylestia.com\/stables*"
            ],
            "js": [
                "jquery.js",
                "innerDOM.js",
                "usefulFunctions.js",
                "stableTabLink.js",
                "stableImagesAsHatchlings.js",
                "stable.js"
            ],
            "css": [
                "stable.css"
            ]
        },
        {
            "matches": [
                "https:\/\/www.sylestia.com\/account\/generator*"
            ],
            "js": [
                "usefulFunctions.js",
                "breedingLink.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.sylestia.com\/account\/wardrobe*"
            ],
            "js": [
                "jquery.js",
                "usefulFunctions.js",
                "innerDOM.js",
                "wardrobeHelds2.js"
            ],
            "css": [
                "wardrobe.css"
            ]
        },
        {
            "matches": [
                "https:\/\/www.sylestia.com\/explore*"
            ],
            "js": [
                "jquery.js",
                "usefulFunctions.js",
                "explore-keys.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.sylestia.com\/forums\/?thread=*"
            ],
            "js": [
                "jquery.js",
                "usefulFunctions.js",
                "showUserId.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}