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": "Small Business Prospector",
"version": "0.0.5",
"description": "Save businesses from Yelp or Google to a spreadsheet, send personal DMs on Facebook or Instagram, and estimate revenue using ChatGPT",
"permissions": [
"tabs",
"clipboardWrite",
"scripting",
"storage",
"notifications"
],
"content_scripts": [
{
"matches": [
"https:\/\/www.facebook.com\/messages\/*",
"https:\/\/www.messenger.com\/t\/*",
"https:\/\/www.instagram.com\/direct\/*",
"https:\/\/www.yelp.com\/biz\/*",
"https:\/\/www.google.com\/maps\/place\/*",
"https:\/\/www.google.com\/search*",
"https:\/\/*.instagram.com\/direct\/*",
"https:\/\/ig.me\/m\/*",
"https:\/\/*.ig.me\/m\/*"
],
"js": [
"content.js",
"google_business.js"
],
"run_at": "document_idle"
}
],
"action": {
"default_icon": {
"48": "square-logo.png",
"128": "square-logo.png"
},
"default_popup": "popup.html"
},
"background": {
"service_worker": "background.js"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; worker-src 'self'"
},
"host_permissions": [
"https:\/\/*.facebook.com\/*",
"https:\/\/*.messenger.com\/*",
"https:\/\/www.yelp.com\/*",
"https:\/\/www.google.com\/search*",
"https:\/\/www.google.com\/maps\/*",
"https:\/\/www.instagram.com\/*",
"https:\/\/ig.me\/m\/*"
],
"web_accessible_resources": [
{
"resources": [
"square-logo.png",
"full-logo.png"
],
"matches": [
"<all_urls>"
]
}
]
}