HideMyVideo

Embeds videos into any webpage

什麼是HideMyVideo?

HideMyVideo是由anarchy2810開發的Chrome擴展程式,該擴展的主要功能是“Embeds videos into any webpage”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載HideMyVideo擴展crx文件

下載HideMyVideo擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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

擴展基本資訊

名稱 HideMyVideo HideMyVideo
ID gllhpfhkdpjlcfflpclfemkbipnnimik
官方網址 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"
    ]
}