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'"
}