Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3693902
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T04:25:57+00:00 2026-05-19T04:25:57+00:00

I have a set of data in a website table that has multiple pages

  • 0

I have a set of data in a website table that has multiple pages that I need to parse and add the values of a certain field, specifically price field and an inventory field. I don’t have access to the code or database. Does anyone know if there is an extension in Chrome or Firefox that can facilitate this type of functionality? Here is an example of the data I need:

I would like a very simple summary like “Total Inventory Price: $500.00”. I wouldn’t even mind if it were per page and I had to write down each new total and add them up myself. I am proficient in jQuery and such so if I could somehow write this myself, I wouldn’t even mind a pointer in that direction. It would have to be an extension though as I don’t have direct access to the page.

Edit: Could a greasemonkey script do this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-19T04:25:57+00:00Added an answer on May 19, 2026 at 4:25 am

    If you’re proficient in jQuery, and know how to extract the data from that table and do your own calculations, then it will be super easy for you to do! Please refer to the documentation, it has all the information you need to do such thing:

    http://code.google.com/chrome/extensions/getstarted.html

    One Way

    If you want this to always show the totals when you visit that page, then you can use a content script. The content script world will have direct communication to the DOM of that page, so you can use jQuery and do your thing. Skeleton for that would be:

    manifest.json

    {
      "name": "Content Script test",
      "version": "0.1",
      "description": "Content Script test",
      "content_scripts": [
        {
          "matches": ["http://www.website.com/*"],
          "js": [ "jquery-1.4.2.min.js", "cs.js" ],
          "run_at": "document_start",
          "all_frames": true
        }
      ]
    }
    

    cs.js

    // Your jQuery
    

    Another Way

    If you want to show the totals only when you click on a button on the browser. You can use a browser action. You would need a background page to listen when you click on that browser action. Basically, the skeleton for that would be:

    manifest.json

    {
      "name": "Browser Action test",
      "version": "0.1",
      "description": "Content Script test",
      "background_page": "background.html",
        "browser_action": {
        "default_icon": "icon19.png",
        "default_title": "Browser Action Test"
      },
      "permissions": [ "tabs", "http://www.website.com/*" ]
    }
    

    background.html

    chrome.browserAction.onClicked.addListener(function(tab) {
      chrome.tabs.executeScript(tab.id, {file: 'jquery-1.4.2.min.js'});
      chrome.tabs.executeScript(tab.id, {file: 'cs.js'});
    });
    

    cs.js

    // Your jQuery
    

    That’s it, please refer to the documentation for more assistance, the code above is untested, so don’t be surprised if stuff don’t work right out of the box 🙂

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We have this set of data that we need to get the average of
I have a set of data protected by 16bit checksums that I need to
I have a set of data that models a hierarchy of categories. A root
I have a set of data that needs to be displayed as a crosstab
I have a data set that is organized in the following manner: Timestamp|A0001|A0002|A0003|A0004|B0001|B0002|B0003|B0004 ...
I have a set of core, complicated JavaScript data structures/classes that I'd like to
I have an Aggregate field in a client data set and I use a
Scenario: I have an application that has a config table which stores the config
I have a column in the database (SQL Server 2005) that has data with
I have a data set whose elements are displayed as rows in a DataGrid.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.