Permanent Inspect Element

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

Co je Permanent Inspect Element?

Permanent Inspect Element je rozšíření Chrome vyvinuté Mehran Jalali, a jeho hlavní funkcí je „Save the changes you make to a page with Inspect Element so they wouldn't go away after refreshing“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Permanent Inspect Element

Stáhněte si soubory rozšíření Permanent Inspect Element ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Permanent Inspect Element Permanent Inspect Element
ID alfgclaljdbleenfjjnkefddlgbknllp
Oficiální URL https://chromewebstore.google.com/detail/permanent-inspect-element/alfgclaljdbleenfjjnkefddlgbknllp
Popis Save the changes you make to a page with Inspect Element so they wouldn't go away after refreshing
Velikost souboru 109 KB
Počet instalací 71,918
Aktuální Verze 0.1.1
Poslední Aktualizace 2020-08-11
Datum Vydání 2020-08-03
Hodnocení 2.92/5 Celkem 204 Hodnocení
Vývojář Mehran Jalali
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
    ]
}