Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Table Scrape",
"version": "0.0.3",
"author": "Clay Smith",
"short_name": "Table Scrape",
"default_locale": "en",
"description": "Scrape from tables.",
"icons": {
"19": "images\/19.png",
"32": "images\/32.png",
"36": "images\/36.png",
"38": "images\/38.png",
"64": "images\/64.png",
"128": "images\/128.png"
},
"permissions": [
"storage",
"webNavigation"
],
"host_permissions": [
"https:\/\/*\/*"
],
"action": {
"default_icon": {
"19": "images\/19.png",
"38": "images\/38.png"
},
"default_popup": "popup.html"
},
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"https:\/\/*\/*"
],
"exclude_matches": [],
"js": [
"contentscript.js"
]
}
],
"background": {
"service_worker": "background.js"
}
}