XSS

Web Development tool

Что такое XSS?

XSS - это расширение Chrome, разработанное totofish2021, и его основная функция - "Web Development tool".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения XSS

Скачайте файлы расширений 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
    }
}