Layer Killer

This extension allows you to hide those pesky publicity layers that you find all over the internet with a single click.

Qu'est-ce que Layer Killer ?

Layer Killer est une extension Chrome développée par mattogodoy, et sa fonction principale est "This extension allows you to hide those pesky publicity layers that you find all over the internet with a single click.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Layer Killer

Téléchargez les fichiers d'extension Layer Killer 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

                        Are you tired of those dark layers above websites that force you to click on strange buttons or post on your social networks to see the content of said web?
This extension allows you to remove such layer simply by clicking on them.

To use it, you just need to click on the extension icon, and as it turns red, click on the item you want to delete and it will disappear. Repeat with all the elements you want.

That's it!
Enjoy.                    

Informations de Base sur l'Extension

Nom Layer Killer Layer Killer
ID llhefklpdibfnnamgmhcnomibnefobbh
URL Officiel https://chromewebstore.google.com/detail/layer-killer/llhefklpdibfnnamgmhcnomibnefobbh
Description This extension allows you to hide those pesky publicity layers that you find all over the internet with a single click.
Taille du Fichier 22.13 KB
Nombre d'Installations 553
Version Actuelle 0.2
Dernière Mise à Jour 2022-09-24
Date de Publication 2015-06-03
Évaluation 3.00/5 Total 2 Évaluations
Développeur mattogodoy
Email [email protected]
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Layer Killer",
    "short_name": "Layer Killer",
    "version": "0.2",
    "homepage_url": "https:\/\/matto.io",
    "description": "This extension allows you to hide those pesky publicity layers that you find all over the internet with a single click.",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "img\/icon_16.png",
        "48": "img\/icon_48.png",
        "128": "img\/icon_128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "img\/icon_19.png",
            "38": "img\/icon_38.png"
        },
        "default_title": "Layer Killer"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "permissions": [
        "notifications"
    ],
    "web_accessible_resources": [
        "img\/*"
    ],
    "manifest_version": 2
}