HideMyVideo

Embeds videos into any webpage

ما هو HideMyVideo؟

HideMyVideo هو إضافة Chrome تم تطويرها بواسطة anarchy2810، والميزة الرئيسية لها هي "Embeds videos into any webpage".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة HideMyVideo

قم بتنزيل ملفات الامتداد HideMyVideo بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
    ]
}