PoE Wiki Redirector

Redirects PoE Fandom requests to PoE Wiki, as well as removes PoE Fandom search results from Google.

Что такое PoE Wiki Redirector?

PoE Wiki Redirector - это расширение Chrome, разработанное Gist, и его основная функция - "Redirects PoE Fandom requests to PoE Wiki, as well as removes PoE Fandom search results from Google.".

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

screenshot

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

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

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

                        Redirects PoE Fandom (pathofexile.fandom.com) requests to PoE Wiki (poewiki.net) and adds an option to remove PoE Fandom search results from Google search results.                    

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

Название PoE Wiki Redirector PoE Wiki Redirector
ID olimdjdkimlkghojdfglpjcookpbdfee
Официальный URL https://chromewebstore.google.com/detail/poe-wiki-redirector/olimdjdkimlkghojdfglpjcookpbdfee
Описание Redirects PoE Fandom requests to PoE Wiki, as well as removes PoE Fandom search results from Google.
Размер файла 20.91 KB
Количество установок 4,198
Текущая Версия 1.0
Последнее Обновление 2022-08-12
Дата публикации 2022-08-12
Рейтинг 5.00/5 Всего 9 оценок
Разработчик Gist
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности https://getgist.com/privacy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "PoE Wiki Redirector",
    "description": "Redirects PoE Fandom requests to PoE Wiki, as well as removes PoE Fandom search results from Google.",
    "author": "jittarao",
    "version": "1.0",
    "icons": {
        "128": "icon128.png",
        "48": "icon48.png"
    },
    "permissions": [
        "storage",
        "webNavigation"
    ],
    "host_permissions": [
        "*:\/\/pathofexile.fandom.com\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": "icon48.png",
        "default_popup": "popup.html",
        "default_title": "PoE Wiki Redirector"
    },
    "content_scripts": [
        {
            "js": [
                "searchFilter.js"
            ],
            "matches": [
                "https:\/\/www.google.com\/*",
                "https:\/\/www.google.co.jp\/*",
                "https:\/\/www.google.co.uk\/*",
                "https:\/\/www.google.es\/*",
                "https:\/\/www.google.ca\/*",
                "https:\/\/www.google.de\/*",
                "https:\/\/www.google.it\/*",
                "https:\/\/www.google.fr\/*",
                "https:\/\/www.google.com.au\/*",
                "https:\/\/www.google.com.tw\/*",
                "https:\/\/www.google.nl\/*",
                "https:\/\/www.google.com.br\/*",
                "https:\/\/www.google.com.tr\/*",
                "https:\/\/www.google.be\/*",
                "https:\/\/www.google.com.gr\/*",
                "https:\/\/www.google.co.in\/*",
                "https:\/\/www.google.com.mx\/*",
                "https:\/\/www.google.dk\/*",
                "https:\/\/www.google.com.ar\/*",
                "https:\/\/www.google.ch\/*",
                "https:\/\/www.google.cl\/*",
                "https:\/\/www.google.at\/*",
                "https:\/\/www.google.co.kr\/*",
                "https:\/\/www.google.ie\/*",
                "https:\/\/www.google.com.co\/*",
                "https:\/\/www.google.pl\/*",
                "https:\/\/www.google.pt\/*",
                "https:\/\/www.google.com.pk\/*"
            ],
            "run_at": "document_end"
        }
    ]
}