Website Theme Manager

Change your desired website's look! Choose your style from userstyles.org or write your own!

Website Theme Managerคืออะไร?

Website Theme Manager เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jorvi และคุณลักษณะหลักของมันคือ "Change your desired website's look! Choose your style from userstyles.org or write your own!"

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Website Theme Manager

ดาวน์โหลดไฟล์ส่วนขยาย Website Theme Manager ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        Website Theme Manager customizes a website(s) appearance; you can choose your desired style from the userstyles.org website or write your own.

Note: "Website Theme Manager" addon is NOT affiliated with the userstyles.org website at all. But, users can choose desired styles available in userstyles.org and use them with this addon.

Once you install the addon, please visit userstyles.org and find your desired theme, then click on "Add this Theme" (appears only after you install Website Theme Manager). The theme will be automatically added to the extension's options page, where you can easily edit, remove or inactivate it.

Few features:
1. Enables you to easily manage (add, edit or remove) styles.
2. Enhances your browsing experience by allowing you to customize the way a website looks.
3. By using custom styles (CSS) you can change colors, fonts, and almost all HTML contents within a page; meaning completely redesigning the entire page.
4. To add styles, there are two options available:
   a. writing your custom style (CSS) or
   b. adding it from the userstyles.org site. 
5. Toolbar button can easily enable or disable the extension.
6. An example of how to add a style is available on the options page (top-section).

To report bugs, please visit the addon's homepage (http://mybrowseraddon.com/website-theme-manager.html) and fill out the bug report form.                    

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

ชื่อ Website Theme Manager Website Theme Manager
ID dhkeofcjnldbphkhkdgjbnhfiaholpal
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/website-theme-manager/dhkeofcjnldbphkhkdgjbnhfiaholpal
คำอธิบาย Change your desired website's look! Choose your style from userstyles.org or write your own!
ขนาดไฟล์ 55.96 KB
จำนวนการติดตั้ง 219
เวอร์ชันปัจจุบัน 0.1.7
อัปเดตครั้งล่าสุด 2024-03-04
วันที่เผยแพร่ 2019-07-09
คะแนน 2.33/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Jorvi
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://mybrowseraddon.com/website-theme-manager.html
URL หน้าช่วยเหลือ https://mybrowseraddon.com/website-theme-manager.html
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1.7",
    "manifest_version": 3,
    "name": "Website Theme Manager",
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "homepage_url": "https:\/\/mybrowseraddon.com\/website-theme-manager.html",
    "description": "Change your desired website's look! Choose your style from userstyles.org or write your own!",
    "commands": {
        "_execute_action": []
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "unlimitedStorage"
    ],
    "options_ui": {
        "open_in_tab": true,
        "page": "data\/options\/options.html"
    },
    "web_accessible_resources": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "resources": [
                "data\/content_script\/icons\/saved.png",
                "data\/content_script\/icons\/loading.gif"
            ]
        }
    ],
    "action": {
        "default_title": "Website Theme Manager",
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        }
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "data\/content_script\/inject.js"
            ]
        },
        {
            "run_at": "document_start",
            "matches": [
                "*:\/\/*.userstyles.org\/*"
            ],
            "js": [
                "data\/content_script\/userstyles.js"
            ],
            "css": [
                "data\/content_script\/userstyles.css"
            ]
        }
    ],
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png"
    }
}