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