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-07-06T01:47:18.717+00:00

    Not sure what asp.net core has to do with a chrome extension. As chrome extensions are a html file with JavaScript, you typically use standard JavaScript test tools.

    See this node package for jest

    jest-chrome

    1 person found this answer helpful.

  2. Anonymous
    2021-07-06T01:53:45.233+00:00

    Hi @Saeed Pooladzadeh ,

    Do you mean you create a Chrome extension using Asp.net Core, and now you want to test it?

    Generally, to test the chrome extension, you could open Chrome Browser and go to Extensions:

    111966-image.png

    Then, enable Developer Mode and click on Load Unpacked, Choose the Project Folder, after that the extension is added to Chrome successfully. Like this:

    112012-9.gif

    More detail information about creating the Google Extension, see How To Create Chrome Extensions.


    If the answer is helpful, please click "Accept Answer" and upvote it.
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    Best Regards,
    Dillion

    1 person found this answer helpful.
    0 comments No comments

  3. Saeed Pooladzadeh 241 Reputation points
    2021-07-06T17:01:56.593+00:00

    I have installed it and it's in my extensions. That's active but can't see it in the progress bar!

    Do you have any idea?

    1 person found this answer helpful.

  4. Saeed Pooladzadeh 241 Reputation points
    2021-07-10T21:03:50.147+00:00

    113582-instaberry1.png

    Please see this image. My extension name is Instaberry.

    Why that's not active in that part?

    1 person found this answer helpful.

  5. Saeed Pooladzadeh 241 Reputation points
    2021-09-01T15:13:51.893+00:00

    Here comes the related code for the chrome extension:

    {
        "name": "instaberry",
        "description": "simply upload your posts and story to instagram.",
        "app": {
            "urls": ["http://instaberry.ir/"],
            "launch": {
                "web_url": "http://instaberry.ir/"
            }
        },
        "manifest_version": 2,
        "update_url": "http://clients2.google.com/service/update2/crx",
        "version": "0.1",
        "icons": {
            "128": "icon.png"
        }
    }
    

    Can you please let me know do you think is this correct or not?

    thanks,

    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.