sourceditor

A simple and minimal extension that enables you to edit the source code of any website and save it.

什么是sourceditor?

sourceditor是由littlen4开发的Chrome扩展程序,该扩展的主要功能是“A simple and minimal extension that enables you to edit the source code of any website and save it.”。

扩展截图

screenshot

下载sourceditor扩展crx文件

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

扩展使用说明

                        sourceditor is a simple way to edit any website's source code and save it. The next time you visit a site you edited, the changes will still be there.                    

扩展基本信息

名称 sourceditor sourceditor
ID eonnlpadjpdnandpobhloihongackbpg
官方URL https://chromewebstore.google.com/detail/sourceditor/eonnlpadjpdnandpobhloihongackbpg
简介 A simple and minimal extension that enables you to edit the source code of any website and save it.
文件大小 175 KB
安装次数 3,000
当前版本 1.0
更新时间 2019-03-08
上架时间 2019-03-08
评分 4.39/5 共44次评分
开发者 littlen4
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "sourceditor",
    "description": "A simple and minimal extension that enables you to edit the source code of any website and save it.",
    "version": "1.0",
    "manifest_version": 2,
    "content_scripts": [
        {
            "js": [
                "jquery.js",
                "script.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "bg.js"
        ]
    },
    "icons": {
        "128": "icon.png",
        "48": "citadel.jpg"
    },
    "permissions": [],
    "web_accessible_resources": [
        "*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}