XSS

Web Development tool

XSS là gì?

XSS là một tiện ích mở rộng Chrome được phát triển bởi totofish2021, và tính năng chính của nó là "Web Development tool".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng XSS 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

                        A chrome extension tool that can inject custom scripts into the current web page.

For example, loading Jquery into the page to facilitate DOM operations, automatically filling in form content, or executing other JavaScript scripts to replace manual repetitive operations for testing or development and debugging.


Source repository: https://github.com/totofish/XSS                    

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

Tên XSS XSS
ID bebjbdbgpmgdlfehkibnmgmbkcniaeij
URL Chính Thức https://chromewebstore.google.com/detail/xss/bebjbdbgpmgdlfehkibnmgmbkcniaeij
Mô tả Web Development tool
Kích Thước Tệp 232 KB
Số Lần Cài Đặt 2,136
Phiên Bản Hiện Tại 1.2.0
Cập Nhật Lần Cuối 2022-01-31
Ngày Phát Hành 2021-04-09
Đánh Giá 5.00/5 Tổng số 7 Đánh Giá
Nhà Phát Triển totofish2021
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/totofish/XSS
Ngôn Ngữ Được Hỗ Trợ en,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "version": "1.2.0",
    "manifest_version": 2,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_title": "XSS",
        "default_popup": "GUI.html",
        "default_icon": "icon16.png"
    },
    "permissions": [
        "notifications",
        "contextMenus",
        "storage",
        "downloads",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "extension\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "extension\/background.js"
        ],
        "persistent": false
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true,
        "open_in_tab": false
    }
}