Permanent Inspect Element

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

Hvad er Permanent Inspect Element?

Permanent Inspect Element er en Chrome-udvidelse udviklet af Mehran Jalali, og dens hovedfunktion er "Save the changes you make to a page with Inspect Element so they wouldn't go away after refreshing".

Udvidelsesskærmbilleder

screenshot

Download Permanent Inspect Element-udvidelses-CRX-fil

Download Permanent Inspect Element-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Permanent Inspect Element Permanent Inspect Element
ID alfgclaljdbleenfjjnkefddlgbknllp
Officiel URL https://chromewebstore.google.com/detail/permanent-inspect-element/alfgclaljdbleenfjjnkefddlgbknllp
Beskrivelse Save the changes you make to a page with Inspect Element so they wouldn't go away after refreshing
Filstørrelse 109 KB
Antal Installationer 71,918
Nuværende Version 0.1.1
Senest Opdateret 2020-08-11
Udgivelsesdato 2020-08-03
Bedømmelse 2.92/5 Samlet 204 Bedømmelser
Udvikler Mehran Jalali
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
    ]
}