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
Eメール [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
    }
}