Enable local file links
Make it possible to open by click a link to a local file that is disabled by Chrome.
Hvad er Enable local file links?
Enable local file links er en Chrome-udvidelse udviklet af https://peruse.io, og dens hovedfunktion er "Make it possible to open by click a link to a local file that is disabled by Chrome.".
Udvidelsesskærmbilleder
Download Enable local file links-udvidelses-CRX-fil
Download Enable local file links-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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). Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | hbmcflodcpmdbpelmchgmekkbdbmlmfh |
| Officiel URL | https://chromewebstore.google.com/detail/enable-local-file-links/hbmcflodcpmdbpelmchgmekkbdbmlmfh |
| Beskrivelse | Make it possible to open by click a link to a local file that is disabled by Chrome. |
| Filstørrelse | 6.39 KB |
| Antal Installationer | 104,844 |
| Nuværende Version | 0.8.1 |
| Senest Opdateret | 2021-01-28 |
| Udgivelsesdato | 2021-01-18 |
| Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
| Udvikler | https://peruse.io |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://github.com/peruseio/open-local-link |
| Understøttede Sprog | 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"
} | |