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",
"manifest_version": 3,
"name": "Reply4Me: ChatGPT AI Dating & Messaging Assistant",
"description": "Reply4Me is a ChatGPT-powered AI Dating & Messaging Assistant designed to enhance your conversations for dating and social platforms",
"version": "1.1.29",
"icons": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png"
},
"background": {
"service_worker": "service_worker.js",
"type": "module"
},
"permissions": [
"webRequest",
"contextMenus"
],
"host_permissions": [
"https:\/\/*.tinder.com\/*",
"https:\/\/*.gotinder.com\/*",
"https:\/\/*.bumble.com\/*",
"https:\/\/reply4me.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/*.tinder.com\/*"
],
"run_at": "document_start",
"js": [
"tinder_content.js"
]
},
{
"matches": [
"https:\/\/*.bumble.com\/*"
],
"run_at": "document_start",
"js": [
"bumble_content.js"
]
},
{
"matches": [
"https:\/\/*.linkedin.com\/*",
"https:\/\/*.x.com\/*",
"https:\/\/*.twitter.com\/*",
"https:\/\/*.facebook.com\/*",
"https:\/\/web.whatsapp.com\/*",
"https:\/\/*.instagram.com\/*"
],
"run_at": "document_start",
"js": [
"content.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"ui.html",
"ui.css",
"svgs\/*"
],
"matches": [
"https:\/\/*.tinder.com\/*",
"https:\/\/*.bumble.com\/*"
]
},
{
"resources": [
"ui_2.html",
"ui_2.css",
"svgs\/*"
],
"matches": [
"https:\/\/*.linkedin.com\/*",
"https:\/\/*.x.com\/*",
"https:\/\/*.twitter.com\/*",
"https:\/\/*.facebook.com\/*",
"https:\/\/web.whatsapp.com\/*",
"https:\/\/*.instagram.com\/*"
]
}
]
}