How Can I communicate with Chrome(Chrome Extension) using C#?

后端 未结 3 1901
情深已故
情深已故 2021-01-31 23:29

I want to create a bridge which can communicate between my C# application and extension.
Here is the explanation of what I actually want: I have created an extension which w

3条回答
  •  太阳男子
    2021-02-01 00:07

    Most of google chrome extensions are written in HTML, CSS or Javascript. Then, bundling your extension directory into a .crx Chrome Extension file is as simple as running a short Python script. But, C# could be translated into the Javascript, you can write your own business logic for your extensions. Look at Script#

提交回复
热议问题