Custom sites

create a website style

Custom sitesคืออะไร?

Custom sites เป็นส่วนขยายของ Chrome ที่พัฒนาโดย akimovivan355 และคุณลักษณะหลักของมันคือ "create a website style"

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        the application allows you to customize the interface of google and youtube. Select separate colors for the text of the background links using the full RGB palette for each site separately, the colors can be reset if necessary                    

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

ชื่อ Custom sites Custom sites
ID hiadibhippamgikegbcbfagpalmfoonh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/custom-sites/hiadibhippamgikegbcbfagpalmfoonh
คำอธิบาย create a website style
ขนาดไฟล์ 45.04 KB
จำนวนการติดตั้ง 42
เวอร์ชันปัจจุบัน 4.1
อัปเดตครั้งล่าสุด 2023-01-24
วันที่เผยแพร่ 2021-09-01
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา akimovivan355
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Custom sites",
    "description": "create a website style",
    "version": "4.1",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "48": "image 3.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "activeTab"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "host_permissions": [
        "*:\/\/*.google.com\/"
    ]
}