Permanent Inspect Element

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

O que é Permanent Inspect Element?

Permanent Inspect Element é uma extensão do Chrome desenvolvida por Mehran Jalali, e sua principal característica é "Save the changes you make to a page with Inspect Element so they wouldn't go away after refreshing".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Permanent Inspect Element

Baixe arquivos de extensão Permanent Inspect Element no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Permanent Inspect Element Permanent Inspect Element
ID alfgclaljdbleenfjjnkefddlgbknllp
URL Oficial https://chromewebstore.google.com/detail/permanent-inspect-element/alfgclaljdbleenfjjnkefddlgbknllp
Descrição Save the changes you make to a page with Inspect Element so they wouldn't go away after refreshing
Tamanho do Arquivo 109 KB
Contagem de Instalações 71,918
Versão Atual 0.1.1
Última Atualização 2020-08-11
Data de Publicação 2020-08-03
Classificação 2.92/5 Total de 204 Avaliações
Desenvolvedor Mehran Jalali
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}