Permanent Inspect Element

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

Was ist Permanent Inspect Element?

Permanent Inspect Element ist eine Chrome-Erweiterung, die von Mehran Jalali entwickelt wurde, und ihr Hauptmerkmal ist "Save the changes you make to a page with Inspect Element so they wouldn't go away after refreshing".

Erweiterungsscreenshots

screenshot

Permanent Inspect Element-Erweiterungs-CRX-Datei herunterladen

Laden Sie Permanent Inspect Element-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Permanent Inspect Element Permanent Inspect Element
ID alfgclaljdbleenfjjnkefddlgbknllp
Offizielle URL https://chromewebstore.google.com/detail/permanent-inspect-element/alfgclaljdbleenfjjnkefddlgbknllp
Beschreibung Save the changes you make to a page with Inspect Element so they wouldn't go away after refreshing
Dateigröße 109 KB
Installationsanzahl 71,918
Aktuelle Version 0.1.1
Letztes Update 2020-08-11
Veröffentlichungsdatum 2020-08-03
Bewertung 2.92/5 Insgesamt 204 Bewertungen
Entwickler Mehran Jalali
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}