Global Replace All

A Chrome extension to automatically find and replace in all tabs in all textareas and inputs upon enter press, and as soon as a tab…

Что такое Global Replace All?

Global Replace All - это расширение Chrome, разработанное GirkovArpa, и его основная функция - "A Chrome extension to automatically find and replace in all tabs in all textareas and inputs upon enter press, and as soon as a tab…".

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

screenshot

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

Скачайте файлы расширений Global Replace All в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        A Chrome extension to automatically find and replace in all tabs in all textareas and inputs upon enter press, and as soon as a tab is loaded.                    

Основная информация о расширении

Название Global Replace All Global Replace All
ID fkijnilmlghjfhphomnpgeejddbmlppm
Официальный URL https://chromewebstore.google.com/detail/global-replace-all/fkijnilmlghjfhphomnpgeejddbmlppm
Описание A Chrome extension to automatically find and replace in all tabs in all textareas and inputs upon enter press, and as soon as a tab…
Размер файла 16.89 KB
Количество установок 44
Текущая Версия 0.0.0.2
Последнее Обновление 2020-10-05
Дата публикации 2020-06-05
Рейтинг 3.00/5 Всего 2 оценок
Разработчик GirkovArpa
Электронная почта [email protected]
Тип оплаты free
URL страницы помощи https://github.com/GirkovArpa/global-replace-all/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Global Replace All",
    "permissions": [
        "tabs",
        "activeTab"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "version": "0.0.0.2",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon16.png",
        "default_title": "Global Replace All",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "script.js"
            ]
        }
    ]
}