Permanent Inspect Element

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

¿Qué es Permanent Inspect Element?

Permanent Inspect Element es una extensión de Chrome desarrollada por Mehran Jalali, y su función principal es "Save the changes you make to a page with Inspect Element so they wouldn't go away after refreshing".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Permanent Inspect Element

Descarga archivos de extensión Permanent Inspect Element en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Permanent Inspect Element Permanent Inspect Element
ID alfgclaljdbleenfjjnkefddlgbknllp
URL Oficial https://chromewebstore.google.com/detail/permanent-inspect-element/alfgclaljdbleenfjjnkefddlgbknllp
Descripción Save the changes you make to a page with Inspect Element so they wouldn't go away after refreshing
Tamaño del Archivo 109 KB
Cantidad de Instalaciones 71,918
Versión Actual 0.1.1
Última Actualización 2020-08-11
Fecha de Publicación 2020-08-03
Calificación 2.92/5 Total de 204 Calificaciones
Desarrollador Mehran Jalali
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
    ]
}