Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

76
Views
Chrome Extension getting info from third party website

I have a search bar in my chrome extension popup (V3), that directly opens the search-url on a specific website.

function fixedEncodeURI (str) {
    return encodeURI(str).replace(/%5B/g, '[').replace(/%5D/g, ']');
}

$('#searchBtn').click(function(){
    if(search) {
        var bookUrl =  "https:// <!-- Website --!> /search/?q=" + fixedEncodeURI(search);
        var createData = {
            "url": bookUrl,
            "type": "popup",
            "top": 5,
            "left": 5,
            "width": screen.availWidth/2,
            "height": screen.availHeight/2
        };
        chrome.windows.create(createData, function(){});
    }

});

Now I would like to change this, so the extension retrieves a price tag (specific div with given id) from the same url and shows it in my extension, without the window opening visibly.

I neither have API access to the website nor is it my own database behind it.

Is there a way of doing so? And what methods should I look into?

about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!