html code to open a file:// link in chrome browser that uses the chrome extension "open in IE" by default

Assuming everybody uses chrome browser;

So I am creating a wordpress blog for some friends. We use a shared network, and I want to create a link on that blog that when pressed opens up a folder in internet explorer.

The current html code is

I am using a chrome extension called "open in IE" , but to use it requires a right click then choosing an option within the menu. This process is too long and I want to simplify it.

Is there any html code I can write that make it open that file:// link using the "open in IE" extension by default? The goal is to be able to left click the link in chrome and have a window explorer open with the files in it.

Cheers

Solutions

You will most likely need to hard code some javascript.

I believe it is possible to reference installed extensions from your code using chrome.extensions.

Reference here, http://developer.chrome.com/extensions/extension.html

Unfortunately, targetting a specific browser to open on a clicked link is not possible.

Unless you modified some of their internal registry or used an activex plugin, it is just not a supported feature at this time.

Similar questions

How to deny access to users for a file but not to the plugin which uses the file using htaccess?
I have a plugin which is using an xml file located in the plugin folder. example.com/wp-content/plugins/myplugin/myxml.xml I want to deny access to the file for users but not to the plugin. If I type the URL I can read the file. I used the following in htaccess inside my plugin's folder I get the 403 error but the plugin cannot read the file I used...
Hiding or removing file extension displayed in HTML on attachment page
I’m doing up a photography theme in WP at the moment, and I’ve already got great help on this thread (thanks Milo!) for a previous question. In that thread, I asked about displaying the file name of an uploaded file on the attachment.php page for that file. I’m now using the suggested answer, which uses this code to display the name: <?php echo ...
Is there any way to set default for "Insert/Edit Link" to "Open link in new window"?
I almost always select "Open link in new window" when creating an URL/HREF. Is there any way to default this choice. Even if it requires a small source code change, I think it would be worthwhile (if someone can tell me where that might be.)
Open link in a new tab checked by default when adding a new link in visual post editor
When adding a link in the WP visual post editor you have to click the settings after adding the link and then click the Open link in a new tab to have it add a link with a target in a new window/tab. I am looking for a way to have this automatically checked by default. Is there a filter or JavaScript code to do this?
Wordpress REST API - Post Call from a Chrome Extension
I developed a chrome extension and I want to store some datas coming from the chrome extension to my wordpress website using REST API. I have to 2 issues: The first one is that I have an error linked to the fact that there is an interaction between two different domain : "Access to XMLHttpRequest at 'https://groupio.fr/wp-json/groupio/v1/ean/' from...
Make Chrome Extension detect if user is logged in on my Wordpress website
I have a Wordpress website and a Chrome Extension. If the user logs in on the website, I want the Chrome Extension to be aware of that (and vice-versa). The Chrome Extension won't have a login form in it; the user will always log in through the website login form. When you log in on the website, Wordpress by default sets its authentication cookies ...

Also ask

We use cookies to deliver the best possible experience on our website. By continuing to use this site, accepting or closing this box, you consent to our use of cookies. To learn more, visit our privacy policy .