VKPlay.live Now

The extension allows you to display information about streams from the site VK Play.live

VKPlay.live Now란 무엇입니까?

VKPlay.live Now은(는) ejik.mycode에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The extension allows you to display information about streams from the site VK Play.live"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

VKPlay.live Now 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        The extension allows you to quickly see, without going to the site, which of the streamers you are subscribed to stream.                    

확장 프로그램 기본 정보

이름 VKPlay.live Now VKPlay.live Now
ID fbhdmbicggajjgfbnikcdebjhdjkpcbe
공식 URL https://chromewebstore.google.com/detail/vkplaylive-now/fbhdmbicggajjgfbnikcdebjhdjkpcbe
설명 The extension allows you to display information about streams from the site VK Play.live
파일 크기 40.58 KB
설치 횟수 158
현재 버전 1.12
최근 업데이트 2024-02-07
출시 날짜 2023-03-05
평점 5.00/5 총 9 개의 평점
개발자 ejik.mycode
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://www.freeprivacypolicy.com/live/66b79c75-f7c2-4d91-8cb4-e72a039f2e6f
지원되는 언어 en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "version": "1.12",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/api.vkplay.live\/*",
                "*:\/\/vkplay.live\/*"
            ],
            "js": [
                "contentScripts.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "host_permissions": [
        "*:\/\/vkplay.live\/*"
    ],
    "action": {
        "default_title": "VKPlay.live Now",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "alarms",
        "cookies",
        "scripting"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "img\/icon_16.png",
        "32": "img\/icon_32.png",
        "48": "img\/icon_48.png",
        "128": "img\/icon_128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "executeBonus.js"
            ],
            "matches": [
                "*:\/\/vkplay.live\/*"
            ]
        }
    ]
}