VKCustom

Change the style for Vkontakte

VKCustom란 무엇입니까?

VKCustom은(는) NPC에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Change the style for Vkontakte"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Данное расширение добавляет для vk.com тёмную тему заменяя собой старый дизайн                    

확장 프로그램 기본 정보

이름 VKCustom VKCustom
ID oehnhecdbdmdbkamifpmcddelbmfgjfh
공식 URL https://chromewebstore.google.com/detail/vkcustom/oehnhecdbdmdbkamifpmcddelbmfgjfh
설명 Change the style for Vkontakte
파일 크기 29.15 KB
설치 횟수 124
현재 버전 2.4
최근 업데이트 2023-02-05
출시 날짜 2020-07-01
평점 4.50/5 총 8 개의 평점
개발자 NPC
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://vk.com/npcgm
지원되는 언어 en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_app_name__",
    "description": "__MSG_app_description__",
    "author": "Vombit",
    "version": "2.4",
    "default_locale": "ru",
    "icons": {
        "128": "image\/icon.png"
    },
    "permissions": [
        "storage",
        "*:\/\/vk.com\/*",
        "*:\/\/*.vk.com\/*",
        "*:\/\/*.vk.me\/*"
    ],
    "browser_action": {
        "default_title": "VkCustom",
        "default_icon": "image\/icon.png",
        "default_popup": "popup.html"
    },
    "options_page": "pages\/settings.html",
    "minimum_chrome_version": "22",
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "*:\/\/vk.com\/*",
                "*:\/\/*.vk.com\/*",
                "*:\/\/userapi.com\/*",
                "*:\/\/*.userapi.com\/*",
                "*:\/\/vk.me\/*",
                "*:\/\/*.vk.me\/*"
            ],
            "js": [
                "back.js"
            ],
            "css": [
                "styles\/body.css"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    }
}