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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
    ]
}