deLegos

This extension fixes some of the bad parts of the internet.

Что такое deLegos?

deLegos - это расширение Chrome, разработанное xlnt, и его основная функция - "This extension fixes some of the bad parts of the internet.".

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

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

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

                        If you don't like seeing the word "Legos" and it irks you every time, then this is the extension for you.
It scans all text on all websites and swaps out "Legos" for "Lego".

The plural form of Lego is Lego.                    

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

Название deLegos deLegos
ID pphpebkijfnpihcejkagnnocfbfllgee
Официальный URL https://chrome.google.com/webstore/detail/delegos/pphpebkijfnpihcejkagnnocfbfllgee
Описание This extension fixes some of the bad parts of the internet.
Размер файла 3.74 KB
Количество установок 33
Текущая Версия 1.0
Последнее Обновление 2017-02-12
Дата публикации 2017-02-12
Рейтинг 3.00/5 Всего 2 оценок
Разработчик xlnt
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "deLegos",
    "description": "This extension fixes some of the bad parts of the internet.",
    "version": "1.0",
    "browser_action": {
        "default_icon": "dL.png",
        "default_popup": "deLegos.html"
    },
    "permissions": [
        "http:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*"
            ],
            "js": [
                "deLegos.js"
            ],
            "run_at": "document_end"
        }
    ]
}