Permanent Inspect Element

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

什么是Permanent Inspect Element?

Permanent Inspect Element是由Mehran Jalali开发的Chrome扩展程序,该扩展的主要功能是“Save the changes you make to a page with Inspect Element so they wouldn't go away after refreshing”。

扩展截图

screenshot

下载Permanent Inspect Element扩展crx文件

下载Permanent Inspect Element扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Permanent Inspect Element Permanent Inspect Element
ID alfgclaljdbleenfjjnkefddlgbknllp
官方URL https://chromewebstore.google.com/detail/permanent-inspect-element/alfgclaljdbleenfjjnkefddlgbknllp
简介 Save the changes you make to a page with Inspect Element so they wouldn't go away after refreshing
文件大小 109 KB
安装次数 71,918
当前版本 0.1.1
更新时间 2020-08-11
上架时间 2020-08-03
评分 2.92/5 共204次评分
开发者 Mehran Jalali
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
    ]
}