Save Inspect Element

Display changes made using inspect element even after refreshing the page!

What is Save Inspect Element?

Save Inspect Element is a Chrome extension developed by Bucky, and its main feature is "Display changes made using inspect element even after refreshing the page!".

Extension Screenshots

screenshot

Download Save Inspect Element Extension CRX File

Download Save Inspect Element extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Save all changes done through inspect element and see it after refreshing your page!

This extension has been tested on the following operating systems:

✅ MacOS | 10.13
✅ Windows 10 | 21H2
✅ Ubuntu | 20.04                    

Extension Basic Information

Name Save Inspect Element Save Inspect Element
ID ghpfknnfhakcngbpejoakfcndhmhffkj
Official URL https://chrome.google.com/webstore/detail/save-inspect-element/ghpfknnfhakcngbpejoakfcndhmhffkj
Description Display changes made using inspect element even after refreshing the page!
File Size 90.44 KB
Installation Count 1,891
Current Version 0.0.1
Last Updated 2021-08-09
Publish Date 2021-08-09
Rating 2.10/5 Total 10 Ratings
Developer Bucky
Email [email protected]
Payment Type free
Privacy Policy Page URL https://mycodding.com/privacy-policy.html
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Save Inspect Element",
    "version": "0.0.1",
    "description": "Display changes made using inspect element even after refreshing the page!",
    "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"
    ]
}