Save Inspect

Extension for Save Inspection and easy code-less editing!

什么是Save Inspect?

Save Inspect是由Tobi Situ开发的Chrome扩展程序,该扩展的主要功能是“Extension for Save Inspection and easy code-less editing!”。

扩展截图

screenshot
screenshot
screenshot

下载Save Inspect扩展crx文件

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

扩展使用说明

                        Easily edit your existing webpages that are hosted on gitlab using chrome's inspect feature. 
When you save your changes using the extension, it updates the git files in real time by committing your changes.

You can also create new pages as well using the extension and push them to gitlab.                    

扩展基本信息

名称 Save Inspect Save Inspect
ID okdjjdfncmbfeoklehpmadgcdbnlnabd
官方URL https://chromewebstore.google.com/detail/save-inspect/okdjjdfncmbfeoklehpmadgcdbnlnabd
简介 Extension for Save Inspection and easy code-less editing!
文件大小 2.73 MB
安装次数 1,468
当前版本 2.0
更新时间 2020-02-28
上架时间 2020-02-28
评分 1.44/5 共9次评分
开发者 Tobi Situ
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Save Inspect",
    "version": "2.0",
    "description": "Extension for Save Inspection and easy code-less editing!",
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_security_policy": "script-src 'self' https:\/\/www.gstatic.com\/firebasejs\/5.6.0\/firebase-app.js https:\/\/*.firebaseio.com https:\/\/www.gstatic.com\/firebasejs\/5.6.0\/firebase-auth.js https:\/\/www.gstatic.com\/firebasejs\/5.6.0\/firebase-firestore.js;  object-src 'self'",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/logo16.png",
            "32": "images\/logo32.png",
            "48": "images\/logo48.png",
            "128": "images\/logo128.png"
        }
    },
    "icons": {
        "16": "images\/logo16.png",
        "32": "images\/logo32.png",
        "48": "images\/logo48.png",
        "128": "images\/logo128.png"
    },
    "manifest_version": 2
}