Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

chrome/chromium extension: run a executable/script via the context menu

I'm writing a small chrome extension for personal use and I would like to run an executable via the context menu and pass certain information as arguments to said executable.

What the simplest and/or cleanest way to achieve this? To me it seems that it is impossible due to chrome's sandboxing.

like image 856
watain Avatar asked Jan 08 '14 21:01

watain


Video Answer


1 Answers

This can be accomplished via NPAPI Plugins.

Code running in an NPAPI plugin has the full permissions of the current user and is not sandboxed or shielded from malicious input by Google Chrome in any way. You should be especially cautious when processing input from untrusted sources, such as when working with content scripts or XMLHttpRequest.

However, I should also include their warning.

Warning

NPAPI is being phased out. Consider using alternatives.

NPAPI is a really big hammer that should only be used when no other approach will work.

via Start an external application from a Google Chrome Extension?

Alternatives to NPAPI

  1. There are several alternatives to NPAPI. In cases where standard web technologies are not yet sufficient, developers and administrators can use NaCl, Apps, Native Messaging API, and Legacy Browser Support to transition from NPAPI. Moving forward, our goal is to evolve the standards-based web platform to cover the use cases once served by NPAPI.

    via http://blog.chromium.org/2013/09/saying-goodbye-to-our-old-friend-npapi.html

  2. Another way, suggested here, is with Java.

    Java applets: http://docs.oracle.com/javase/tutorial/deployment/applet/

    Implementing Policy: http://docs.oracle.com/javase/tutorial/security/userperm/policy.html

  3. Use sendNativeMessage:

    There is chrome.runtime.sendNativeMessage which can be used to send a message to a native application and chrome.runtime.connectNative which allows for a more persistent connection.

    So, you can't directly execute a command, but you can have a native app do it for you.

    You can find more info on Native Messaging in the docs.

    via https://stackoverflow.com/a/19917672/1085891

like image 87
JSuar Avatar answered Sep 18 '22 13:09

JSuar