Custom sites

create a website style

Custom sites란 무엇입니까?

Custom sites은(는) akimovivan355에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "create a website style"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Custom sites 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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\/"
    ]
}