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, разработанное Takashi Sugimoto (tksugimoto), и его основная функция - "Make it possible to open by click a link to a local file that is disabled by Chrome.".

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

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.

[Setting]
Starting with Chrome 118 in October 2023, you will need to enable the "Allow access to file URLs" setting from the extension settings page.
chrome://extensions/?id=nikfmfgobenbhmocjaaboihbeocackld

[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.
https://github.com/tksugimoto/chrome-extension_open-local-file-link                    

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

Название Enable local file links Enable local file links
ID nikfmfgobenbhmocjaaboihbeocackld
Официальный URL https://chromewebstore.google.com/detail/enable-local-file-links/nikfmfgobenbhmocjaaboihbeocackld
Описание Make it possible to open by click a link to a local file that is disabled by Chrome.
Размер файла 9.46 KB
Количество установок 3,781,939
Текущая Версия 0.9.5
Последнее Обновление 2023-12-03
Дата публикации 2020-02-09
Рейтинг 3.85/5 Всего 73 оценок
Разработчик Takashi Sugimoto (tksugimoto)
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/tksugimoto/chrome-extension_open-local-file-link
URL страницы помощи https://github.com/tksugimoto/chrome-extension_open-local-file-link/issues
Поддерживаемые языки en,fr,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extension_name__",
    "version": "0.9.5",
    "manifest_version": 3,
    "default_locale": "en",
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAgvksrHFKxFAUZKrzXyHv2CKWNWNzrzQAs5pgsA8tSN6QttOIAZ\/peBVWuWLygw99qBMuTGZZRDn5jqLdhQrGi\/viH6TDYaiAdbrJgZIEfn9JPTCu5UTQROZ85miYwIP7J9mu8f43wUJOiDf2zb6SRmqRs4LaNNYcBM8ktnMdb7uHlDQQbrLcUT3CrDrkHp6MRXUDTdkQ\/pVjitnc+k+H0sogQ8IajHDPidWuADn59ilw7qJwxzTTDPKl6\/nOWKJjpyELFvb\/QEvY3tYDzEex0mq5g1HpLfAT6Flp0l6P4u3PRpdlF3lggIudMBLiiLbBqhFNXkQZoI46C9Rv5jTQTwIDAQAB",
    "description": "__MSG_extension_description__",
    "icons": {
        "128": "icon\/icon.png"
    },
    "permissions": [
        "storage",
        "scripting"
    ],
    "host_permissions": [
        "file:\/\/\/*",
        "*:\/\/*\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "options_page": "options\/index.html",
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "minimum_chrome_version": "88"
}