Permanent Inspect Element

Save the changes you make to a page with Inspect Element so they wouldn't go away after refreshing

Permanent Inspect Elementคืออะไร?

Permanent Inspect Element เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Mehran Jalali และคุณลักษณะหลักของมันคือ "Save the changes you make to a page with Inspect Element so they wouldn't go away after refreshing"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Permanent Inspect Element

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

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

                        This extension lets you save the changes you make to a static web page using Inspect Element to remain there even after you refresh the page.  So if you want to modify a web page to make it easier for you to read, or to remove an intrusive banner, you can do that, and you wouldn't have to re-do it every time you visit the page again.

Of course, this only changes the content of the page on *your* computer and not the website itself.                    

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

ชื่อ Permanent Inspect Element Permanent Inspect Element
ID alfgclaljdbleenfjjnkefddlgbknllp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/permanent-inspect-element/alfgclaljdbleenfjjnkefddlgbknllp
คำอธิบาย Save the changes you make to a page with Inspect Element so they wouldn't go away after refreshing
ขนาดไฟล์ 109 KB
จำนวนการติดตั้ง 71,918
เวอร์ชันปัจจุบัน 0.1.1
อัปเดตครั้งล่าสุด 2020-08-11
วันที่เผยแพร่ 2020-08-03
คะแนน 2.92/5 รวมทั้งหมด 204 คะแนน
ผู้พัฒนา Mehran Jalali
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Permanent Inspect Element",
    "version": "0.1.1",
    "description": "Save the changes you make to a page with Inspect Element so they wouldn't go away after refreshing",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.3.1.js",
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ]
}