Attributes Replacer

Chrome extension allowing for easy replacement of HTML attributes' values.

Что такое Attributes Replacer?

Attributes Replacer - это расширение Chrome, разработанное Krystian Jarmicki, и его основная функция - "Chrome extension allowing for easy replacement of HTML attributes' values.".

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

screenshot

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

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

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

                        - uses CSS selectors to match given attributes
- uses regular expressions to set up replacement rules
- multiple selectors and rules supported
- page is watched for DOM changes and rules are applied to newly added elements
- changes are reverted when replacing is turned off
- changes occur on all tabs simultaneously
- also allows to perform replacement on current page url                    

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

Название Attributes Replacer Attributes Replacer
ID blchhkbbijehipelagipdngfhiolahko
Официальный URL https://chromewebstore.google.com/detail/attributes-replacer/blchhkbbijehipelagipdngfhiolahko
Описание Chrome extension allowing for easy replacement of HTML attributes' values.
Размер файла 110 KB
Количество установок 761
Текущая Версия 1.2.2
Последнее Обновление 2019-03-08
Дата публикации 2019-03-08
Рейтинг 4.14/5 Всего 7 оценок
Разработчик Krystian Jarmicki
Тип оплаты free
Официальный сайт расширения https://github.com/kjarmicki/attributes-replacer
URL страницы помощи https://github.com/kjarmicki/attributes-replacer/issues
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": "icon-128.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ],
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "name": "Attributes Replacer",
    "description": "Chrome extension allowing for easy replacement of HTML attributes' values.",
    "version": "1.2.2"
}