Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Runwei Opportunity Scraper",
"description": "A tool for scraping and processing opportunity data for the Runwei platform",
"version": "1.2.2",
"manifest_version": 3,
"action": {
"default_popup": "pages\/login\/login.html",
"default_icon": "assets\/icons\/runwei.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"services\/scraper.service.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"pages\/scraper\/scraper.html"
],
"matches": [
"<all_urls>"
]
}
],
"permissions": [
"storage",
"tabs",
"<all_urls>",
"webview",
"scripting",
"activeTab"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background\/background.js"
}
}