Enable local file links

Make it possible to open by click a link to a local file that is disabled by Chrome.

Что такое Enable local file links?

Enable local file links - это расширение Chrome, разработанное https://peruse.io, и его основная функция - "Make it possible to open by click a link to a local file that is disabled by Chrome.".

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

screenshot
screenshot

Скачать файл CRX расширения Enable local file links

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

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

                        In Google Chrome, links to local files are disabled, unlike IE.
This extension allows you to open a link to a local file by clicking it.

[Security]
A malicious page can not open a local file without permission, because this extension reacts only to the click operation by the user.

[Others]
Personal information is not collected / used.
Source code is released to GitHub (see "Website" link).                    

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

Название Enable local file links Enable local file links
ID hbmcflodcpmdbpelmchgmekkbdbmlmfh
Официальный URL https://chromewebstore.google.com/detail/enable-local-file-links/hbmcflodcpmdbpelmchgmekkbdbmlmfh
Описание Make it possible to open by click a link to a local file that is disabled by Chrome.
Размер файла 6.39 KB
Количество установок 104,844
Текущая Версия 0.8.1
Последнее Обновление 2021-01-28
Дата публикации 2021-01-18
Рейтинг 5.00/5 Всего 1 оценок
Разработчик https://peruse.io
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/peruseio/open-local-link
Поддерживаемые языки en,fr,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extension_name__",
    "version": "0.8.1",
    "manifest_version": 2,
    "default_locale": "en",
    "description": "__MSG_extension_description__",
    "icons": {
        "128": "icon\/icon.png"
    },
    "permissions": [
        "*:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "minimum_chrome_version": "46.0"
}