Permanent Inspect Element

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

Qu'est-ce que Permanent Inspect Element ?

Permanent Inspect Element est une extension Chrome développée par Mehran Jalali, et sa fonction principale est "Save the changes you make to a page with Inspect Element so they wouldn't go away after refreshing".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Permanent Inspect Element

Téléchargez les fichiers d'extension Permanent Inspect Element au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Permanent Inspect Element Permanent Inspect Element
ID alfgclaljdbleenfjjnkefddlgbknllp
URL Officiel https://chromewebstore.google.com/detail/permanent-inspect-element/alfgclaljdbleenfjjnkefddlgbknllp
Description Save the changes you make to a page with Inspect Element so they wouldn't go away after refreshing
Taille du Fichier 109 KB
Nombre d'Installations 71,918
Version Actuelle 0.1.1
Dernière Mise à Jour 2020-08-11
Date de Publication 2020-08-03
Évaluation 2.92/5 Total 204 Évaluations
Développeur Mehran Jalali
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    ]
}