Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"manifest_version": 3,
"author": "GetProjects",
"name": "Web Scraper - ScrapeMate",
"version": "1.0.1",
"description": "This extension will scrap data from the websites",
"background": {
"service_worker": "\/js\/background.js"
},
"permissions": [
"storage",
"tabs",
"windows"
],
"icons": {
"16": "\/icons\/icon.png",
"32": "\/icons\/icon.png",
"48": "\/icons\/icon.png",
"128": "\/icons\/icon.png"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "\/icons\/icon.png",
"32": "\/icons\/icon.png",
"48": "\/icons\/icon.png",
"128": "\/icons\/icon.png"
}
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"\/js\/content.js",
"\/js\/jquery.min.js"
],
"css": [
"\/css\/content.css"
],
"run_at": "document_start"
}
],
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx"
}