RedRain : Access local files.

Open a link to a local file or execute the window.open from within the iframe.

什麼是RedRain : Access local files.?

RedRain : Access local files.是由tailor.dharmesh開發的Chrome擴展程式,該擴展的主要功能是“Open a link to a local file or execute the window.open from within the iframe.”。

擴展截圖

screenshot
screenshot

下載RedRain : Access local files.擴展crx文件

下載RedRain : Access local files.擴展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.

Execute window.open from iframe from cross origin. It is disabled by default in chrome.

[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).                    

擴展基本資訊

名稱 RedRain : Access local files. RedRain : Access local files.
ID cnaknjccacfkfiadnoehebjdaapckljf
官方網址 https://chromewebstore.google.com/detail/redrain-access-local-file/cnaknjccacfkfiadnoehebjdaapckljf
簡介 Open a link to a local file or execute the window.open from within the iframe.
檔案大小 5.37 KB
安裝次數 102
目前版本 1.0.1
更新時間 2021-04-06
上架時間 2020-04-27
開發者 tailor.dharmesh
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/dharmeshtailor/chrome-extension---Access-Local-Files
說明頁面URL https://github.com/dharmeshtailor/chrome-extension---Access-Local-Files
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extension_name__",
    "version": "1.0.1",
    "manifest_version": 2,
    "default_locale": "en",
    "description": "__MSG_extension_description__",
    "icons": {
        "128": "icon\/icon.png"
    },
    "permissions": [
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "minimum_chrome_version": "46.0"
}