Layer Killer

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

Layer Killer là gì?

Layer Killer là một tiện ích mở rộng Chrome được phát triển bởi mattogodoy, và tính năng chính của nó là "This extension allows you to hide those pesky publicity layers that you find all over the internet with a single click.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Layer Killer

Tải xuống các tệp mở rộng Layer Killer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Layer Killer Layer Killer
ID llhefklpdibfnnamgmhcnomibnefobbh
URL Chính Thức https://chromewebstore.google.com/detail/layer-killer/llhefklpdibfnnamgmhcnomibnefobbh
Mô tả This extension allows you to hide those pesky publicity layers that you find all over the internet with a single click.
Kích Thước Tệp 22.13 KB
Số Lần Cài Đặt 553
Phiên Bản Hiện Tại 0.2
Cập Nhật Lần Cuối 2022-09-24
Ngày Phát Hành 2015-06-03
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển mattogodoy
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
}