Inspector Saver

Reimagine the web: Save your browser's inspect edits for colleagues, clients, or yourself.

什么是Inspector Saver?

Inspector Saver是由https://trumani.com开发的Chrome扩展程序,该扩展的主要功能是“Reimagine the web: Save your browser's inspect edits for colleagues, clients, or yourself.”。

扩展截图

screenshot

下载Inspector Saver扩展crx文件

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

扩展使用说明

                        Store HTML and CSS changes in the browser so that you can return to it later. Showcase your changes with colleagues and clients by loading the edits. You can remove all edits you have captured on a specific page or on all pages at any time.                    

扩展基本信息

名称 Inspector Saver Inspector Saver
ID jiijigihllkgngjmffmmhjdkgdankllh
官方URL https://chromewebstore.google.com/detail/inspector-saver/jiijigihllkgngjmffmmhjdkgdankllh
简介 Reimagine the web: Save your browser's inspect edits for colleagues, clients, or yourself.
文件大小 135 KB
安装次数 660
当前版本 1.1
更新时间 2019-10-16
上架时间 2019-10-13
评分 2.17/5 共6次评分
开发者 https://trumani.com
电子邮箱 [email protected]
付费类型 free
扩展官网 https://trumani.com/products
隐私政策页面URL http://trumani.com/privacy
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Inspector Saver",
    "description": "Reimagine the web: Save your browser's inspect edits for colleagues, clients, or yourself.",
    "version": "1.1",
    "manifest_version": 2,
    "browser_action": {
        "default_popup": "index.html",
        "default_icon": "trumani_material.png"
    },
    "devtools_page": "devtools.html",
    "permissions": [
        "storage",
        "activeTab"
    ],
    "icons": {
        "16": "detective-16.png",
        "48": "detective-48.png",
        "128": "detective-128.png"
    },
    "background": {
        "scripts": [
            "js\/main.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "js\/content.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_idle"
        }
    ]
}