XSS

Web Development tool

什么是XSS?

XSS是由totofish2021开发的Chrome扩展程序,该扩展的主要功能是“Web Development tool”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载XSS扩展crx文件

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

扩展使用说明

                        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                    

扩展基本信息

名称 XSS XSS
ID bebjbdbgpmgdlfehkibnmgmbkcniaeij
官方URL https://chromewebstore.google.com/detail/xss/bebjbdbgpmgdlfehkibnmgmbkcniaeij
简介 Web Development tool
文件大小 232 KB
安装次数 2,136
当前版本 1.2.0
更新时间 2022-01-31
上架时间 2021-04-09
评分 5.00/5 共7次评分
开发者 totofish2021
电子邮箱 [email protected]
付费类型 free
帮助页面URL https://github.com/totofish/XSS
支持的语言 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
    }
}