开发者

Can either a Chrome Extension or Chrome App access a user's installed program?

开发者 https://www.devze.com 2023-02-17 07:54 出处:网络
Can I access a program on a user\'s computer through either a Chrome Extension, or a Chrome App? For 开发者_运维技巧example, suppose I have a program that edits photos, would I be able to embed the e

Can I access a program on a user's computer through either a Chrome Extension, or a Chrome App?

For 开发者_运维技巧example, suppose I have a program that edits photos, would I be able to embed the editor into the Extension or App so that the use doesn't have to right click the photo, save to disc, open it in the editor, etc.


From the FAQ for Google Extensions:

What UI controls can I create for my extension?

Extensions use HTML and CSS to define their user interfaces, so you can use standard form controls to build your UI, or style the interface with CSS, as you would a web page. Additionally, your extension may add buttons to the Chrome browser itself. See browser actions and page actions for more information.

Can I load DLLs in my extension?

Yes, using the NPAPI interface. Because of the possibility for abuse, though, we will review your extension before hosting it in the Google Chrome Extensions Gallery or Chrome Web Store.

Based on the FAQ, I would come to the conclusion that although you can call installed dll's you can only use the returned values. You can not implement custom controls or embed a program inside an extension.

I'm still looking for information concerning Apps, but I the policy with Apps is either the same or more restrictive.

0

精彩评论

暂无评论...
验证码 换一张
取 消