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,
"author": "Takumi Ando",
"default_locale": "en",
"name": "__MSG_extensionName__",
"description": "Practice parter for your language learning",
"version": "1.1",
"icons": {
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"action": {
"default_icon": "icons\/icon32.png",
"default_title": "BabbleGPT",
"default_popup": "popup.html"
},
"permissions": [
"storage"
],
"homepage_url": "https:\/\/github.com\/tand826\/babblegpt",
"content_scripts": [
{
"matches": [
"https:\/\/chat.openai.com\/*"
],
"js": [
"contentscript.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
{
"resources": [
"_locales\/*\/*.json"
],
"matches": [
"<all_urls>"
]
}
]
}