Custom sites

create a website style

什麼是Custom sites?

Custom sites是由akimovivan355開發的Chrome擴展程式,該擴展的主要功能是“create a website style”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Custom sites擴展crx文件

下載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
官方網址 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\/"
    ]
}