How can I test ASP.net chore chrome extension?

Saeed Pooladzadeh 241 Reputation points
2021-07-05T22:08:49+00:00

Hello,

How can I test ASP.net chore chrome extension?

regards,

Saeed

Developer technologies .NET Blazor
0 comments No comments
{count} vote

7 answers

Sort by: Most helpful
  1. Bruce (SqlWork.com) 77,686 Reputation points Volunteer Moderator
    2021-09-02T14:45:07.503+00:00

    It looks like your trying to create a chrome app rather than an extension. These are no longer supported.

    App icons show up on the app launch window, not the toolbar.

    1 person found this answer helpful.

  2. Bruce (SqlWork.com) 77,686 Reputation points Volunteer Moderator
    2021-09-03T14:42:17.153+00:00

    The docs are pretty clear

    https://developer.chrome.com/docs/extensions/mv3/getstarted/

    1. You create a folder
    2. Then a manifest in the folder
    3. Add JavaScript, css and html files. The home page is defined as the pop up in the manifest.

    Once completed you zip up the folder for deployment.

    You can setup a webpack project if you want to use angular, react or vue for the UI. Google for examples for your chosen framework.

    Note: as you reference asp.net, I assume it will be a webapi called from the extension as no website is required to host the extension, it really is just static website hosted by the browser, installed in the extensions folder.

    1 person found this answer helpful.
    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.