Custom Style Script

Add Custom JavaScript (JS) Code or Styles (CSS) to any page.

Custom Style Scriptคืออะไร?

Custom Style Script เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Grephy และคุณลักษณะหลักของมันคือ "Add Custom JavaScript (JS) Code or Styles (CSS) to any page."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Custom Style Script

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

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

                        Custom Style Script customizes the way a webpage looks or behaves, by adding a small JavaScript or CSS code. You can also specify a URL to add the code or add it to all pages.

Key features:
1. Add custom JavaScript codes or styles (CSS) to a specific page or all pages.
2. Clicking on the toolbar icon allows you to disable or enable the addon.
3. Each code item has several options to adjust (see options page for details).
4. You can add several code items and active or inactive them separately.
5. An example of how to add a code is available in the add-on's options page.
6. Before adding the code (JS or CSS) please make sure you have validated the code.
7. Online JS or CSS links (i.e. jQuery or bootstrap) can also be added to any page. See add-on's options page for details.

Note: to report bugs, or request a feature, please visit the add-on's homepage (https://mybrowseraddon.com/custom-style-script.html) and fill the bug report form.                    

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

ชื่อ Custom Style Script Custom Style Script
ID ecjfaoeopefafjpdgnfcjnhinpbldjij
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/custom-style-script/ecjfaoeopefafjpdgnfcjnhinpbldjij
คำอธิบาย Add Custom JavaScript (JS) Code or Styles (CSS) to any page.
ขนาดไฟล์ 49.86 KB
จำนวนการติดตั้ง 13,977
เวอร์ชันปัจจุบัน 0.1.6
อัปเดตครั้งล่าสุด 2024-02-20
วันที่เผยแพร่ 2020-04-21
คะแนน 4.44/5 รวมทั้งหมด 34 คะแนน
ผู้พัฒนา Grephy
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://mybrowseraddon.com/custom-style-script.html
URL หน้าช่วยเหลือ https://mybrowseraddon.com/custom-style-script.html
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1.6",
    "manifest_version": 3,
    "offline_enabled": true,
    "name": "Custom Style Script",
    "host_permissions": [
        ""
    ],
    "short_name": "custom-style-script",
    "homepage_url": "https:\/\/mybrowseraddon.com\/custom-style-script.html",
    "description": "Add Custom JavaScript (JS) Code or Styles (CSS) to any page.",
    "commands": {
        "_execute_action": []
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "scripting"
    ],
    "options_ui": {
        "open_in_tab": true,
        "page": "data\/options\/options.html"
    },
    "action": {
        "default_title": "Custom Style Script",
        "default_popup": "data\/popup\/popup.html",
        "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"
            ]
        }
    ],
    "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"
    }
}