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

前端 未结 1 2011
北荒
北荒 2021-02-08 16:03

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.

相关标签:
1条回答
  • 2021-02-08 16:34

    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

    0 讨论(0)
提交回复
热议问题