Outgoing Link Cleaner

Removes redirect URL's in Google, Facebook, and Reddit

Что такое Outgoing Link Cleaner?

Outgoing Link Cleaner - это расширение Chrome, разработанное Mark Tai, и его основная функция - "Removes redirect URL's in Google, Facebook, and Reddit".

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

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

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

                        Removes redirect URL's in Google, Facebook, and Reddit.  No longer do you copy a link on Google or Facebook and have a weird redirect link instead of the URL to the website you found.                    

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

Название Outgoing Link Cleaner Outgoing Link Cleaner
ID giialbcnpmopmhgkpddkbjlkgenfmfhd
Официальный URL https://chrome.google.com/webstore/detail/outgoing-link-cleaner/giialbcnpmopmhgkpddkbjlkgenfmfhd
Описание Removes redirect URL's in Google, Facebook, and Reddit
Размер файла 57.42 KB
Количество установок 138
Текущая Версия 1.0.2
Последнее Обновление 2016-09-04
Дата публикации 2016-09-04
Рейтинг 5.00/5 Всего 2 оценок
Разработчик Mark Tai
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Outgoing Link Cleaner",
    "version": "1.0.2",
    "description": "Removes redirect URL's in Google, Facebook, and Reddit",
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.google.com\/*",
                "*:\/\/www.facebook.com\/*",
                "*:\/\/www.reddit.com\/*"
            ],
            "js": [
                "jquery-3.1.0.min.js",
                "link_cleaner.js"
            ]
        }
    ],
    "permissions": [
        "*:\/\/www.google.com\/*",
        "*:\/\/www.facebook.com\/*",
        "*:\/\/www.reddit.com\/*"
    ],
    "short_name": "Link Cleaner"
}