HideMyVideo

Embeds videos into any webpage

Qu'est-ce que HideMyVideo ?

HideMyVideo est une extension Chrome développée par anarchy2810, et sa fonction principale est "Embeds videos into any webpage".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension HideMyVideo

Téléchargez les fichiers d'extension HideMyVideo au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom HideMyVideo HideMyVideo
ID gllhpfhkdpjlcfflpclfemkbipnnimik
URL Officiel https://chromewebstore.google.com/detail/hidemyvideo/gllhpfhkdpjlcfflpclfemkbipnnimik
Description Embeds videos into any webpage
Taille du Fichier 108 KB
Nombre d'Installations 11
Version Actuelle 1.0
Dernière Mise à Jour 2018-06-19
Date de Publication 2018-06-19
Évaluation 5.00/5 Total 2 Évaluations
Développeur anarchy2810
Type de Paiement free
Langues Prises en Charge 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"
    ]
}