Open links to local files and folders (file:///) in system file manager or associated application.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"name": "File Links Opener",
"description": "__MSG_extensionDescription__",
"version": "0.7",
"author": "Dmitry Unruh",
"icons": {
"32": "img/32.png",
"48": "img/48.png",
"64": "img/64.png",
"128": "img/128.png"
},
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"default_locale": "en",
"permissions": [
"nativeMessaging",
"notifications",
"storage"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
],
"background": {
"service_worker": "background.js"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}