RespoAI is a browser extension that helps you create thoughtful and effective responses with the click of a button.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "RespoAI",
"description": "RespoAI is a browser extension that helps you create thoughtful and effective responses with the click of a button. ",
"version": "1.0.4",
"manifest_version": 3,
"background": {
"service_worker": "serviceWorker.js"
},
"content_scripts": [
{
"matches": [
"https://twitter.com/*"
],
"js": [
"contentScript.js"
]
},
{
"matches": [
"https://www.linkedin.com/*"
],
"js": [
"linkedinScript.js"
]
},
{
"matches": [
"https://www.reddit.com/*"
],
"js": [
"redditScript.js"
]
}
],
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"action": {
"default_title": "RespoAi",
"default_popup": "popup.html",
"default_icon": {
"16": "/icons/respo16.png",
"32": "/icons/respo32.png",
"48": "/icons/respo48.png",
"128": "/icons/respo128.png"
}
},
"icons": {
"16": "/icons/respo16.png",
"32": "/icons/respo32.png",
"48": "/icons/respo48.png",
"128": "/icons/respo128.png"
}
}