Gridlines: AI Chart and Table Reader & Bookmarker

Gridlines: AI Chart and Table Reader & Bookmarker

Effortlessly convert PDF charts and tables into Excel, bookmark crucial data, and enhance collaboration with direct links.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "default_locale": "en",
  "name": "Gridlines: AI Chart and Table Reader & Bookmarker",
  "version": "0.0.5",
  "description": "Effortlessly convert PDF charts and tables into Excel, bookmark crucial data, and enhance collaboration with direct links.",
  "permissions": [
    "contextMenus",
    "cookies",
    "tabs",
    "activeTab",
    "storage"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "side_panel": {
    "default_path": "src/pages/sidepanel/index.html"
  },
  "options_page": "src/pages/options/index.html",
  "background": {
    "service_worker": "src/pages/background/index.js",
    "type": "module"
  },
  "action": {
    "default_popup": "src/pages/popup/index.html",
    "default_icon": "gridlines-icon-34.png"
  },
  "icons": {
    "128": "gridlines-icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "src/pages/contentInjected/index.js"
      ],
      "css": [
        "assets/css/contentStyle1710971358216.chunk.css"
      ]
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "src/pages/contentUI/index.js"
      ]
    }
  ],
  "devtools_page": "src/pages/devtools/index.html",
  "web_accessible_resources": [
    {
      "resources": [
        "assets/js/*.js",
        "assets/css/*.css",
        "gridlines-icon-128.png",
        "gridlines-icon-34.png"
      ],
      "matches": [
        "<all_urls>"
      ],
      "use_dynamic_url": true
    }
  ]
}