HideMyVideo

Embeds videos into any webpage

HideMyVideo란 무엇입니까?

HideMyVideo은(는) anarchy2810에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Embeds videos into any webpage"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        HideMyVideo replaces webpage videos/images with any YouTube Video, or Video that you desire!                    

확장 프로그램 기본 정보

이름 HideMyVideo HideMyVideo
ID gllhpfhkdpjlcfflpclfemkbipnnimik
공식 URL https://chromewebstore.google.com/detail/hidemyvideo/gllhpfhkdpjlcfflpclfemkbipnnimik
설명 Embeds videos into any webpage
파일 크기 108 KB
설치 횟수 11
현재 버전 1.0
최근 업데이트 2018-06-19
출시 날짜 2018-06-19
평점 5.00/5 총 2 개의 평점
개발자 anarchy2810
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "HideMyVideo",
    "description": "Embeds videos into any webpage",
    "version": "1.0",
    "browser_action": {
        "default_icon": {
            "128": "images\/icon128.png",
            "16": "images\/icon16.png",
            "24": "images\/icon24.png",
            "256": "images\/icon256.png",
            "32": "images\/icon32.png",
            "64": "images\/icon64.png"
        },
        "default_popup": "popup.html",
        "default_title": "Click here!"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "images\/icon16.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content_scripts\/content.js",
                "content_scripts\/jquery.min.js"
            ],
            "css": [
                "content_scripts\/format.css"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage",
        "tabs"
    ]
}