Delete Elements

Alt+click an element to delete it. You can remove pop ups, headers, or anything else on a website that you don't want to see!

Delete Elementsคืออะไร?

Delete Elements เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Kira L และคุณลักษณะหลักของมันคือ "Alt+click an element to delete it. You can remove pop ups, headers, or anything else on a website that you don't want to see!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Delete Elements

ดาวน์โหลดไฟล์ส่วนขยาย Delete Elements ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        My chrome extension allows you to delete any element that you don't want to see on a website using alt+click. After installing this extension, you can focus on the content of a website, instead of the navigation bars, side-bars, and unwanted images. Enjoy!                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Delete Elements Delete Elements
ID egaeolhpclgmcegebneaibocfffkgode
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/delete-elements/egaeolhpclgmcegebneaibocfffkgode
คำอธิบาย Alt+click an element to delete it. You can remove pop ups, headers, or anything else on a website that you don't want to see!
ขนาดไฟล์ 7.14 KB
จำนวนการติดตั้ง 31
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2020-09-11
วันที่เผยแพร่ 2020-09-11
ผู้พัฒนา Kira L
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://kiraprograms.com
URL หน้าช่วยเหลือ http://kiraprograms.com
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Delete Elements",
    "version": "1.0",
    "description": "Alt+click an element to delete it. You can remove pop ups, headers, or anything else on a website that you don't want to see!",
    "permissions": [],
    "page_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "add_to_website.js"
            ]
        }
    ],
    "manifest_version": 2
}