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
官方網址 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'"
}