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,
"icons": {
"128": "contexton_icon.png"
},
"version": "1.2.7",
"author": "maria.malyx",
"default_locale": "en",
"name": "__MSG_appName__",
"description": "__MSG_appDesc__",
"action": {
"default_title": "Links in ChatGPT: access websites, Google Docs and Sheets urls",
"default_popup": "popup.html"
},
"permissions": [
"storage"
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"host_permissions": [
"https:\/\/*\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/chatgpt.com\/*"
],
"js": [
"context_enrichment_utils.js",
"gpt_page_script.js"
]
}
]
}