sourceditor

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

sourceditor là gì?

sourceditor là một tiện ích mở rộng Chrome được phát triển bởi littlen4, và tính năng chính của nó là "A simple and minimal extension that enables you to edit the source code of any website and save it.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng sourceditor

Tải xuống các tệp mở rộng sourceditor dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên sourceditor sourceditor
ID eonnlpadjpdnandpobhloihongackbpg
URL Chính Thức https://chromewebstore.google.com/detail/sourceditor/eonnlpadjpdnandpobhloihongackbpg
Mô tả A simple and minimal extension that enables you to edit the source code of any website and save it.
Kích Thước Tệp 175 KB
Số Lần Cài Đặt 3,000
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2019-03-08
Ngày Phát Hành 2019-03-08
Đánh Giá 4.39/5 Tổng số 44 Đánh Giá
Nhà Phát Triển littlen4
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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'"
}