I'm creating a Chrome extension that (among other things) allow the user to open a local folder when he click on a "file:///" link.
I understand that it's can't be done in JavaScript without extension. (Open local folder from link) and I know that I can open the "download" folder, like this: chrome.downloads.showDefaultFolder();
My question is, if it possible via Chrome extension.
One more interesting point: In "extension" page (chrome://extensions/) in my extension section (which run from local folder) there is a link "Loaded from:" like this:
When I click on this link the extension folder is open. I was searched the script who do this and I found this: chrome.send('extensionSettingsShowPath', [String(extension.id)]);
If I will understand what this line do, maybe I will know how to do this.