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,
"version": "1.0.0",
"name": "__MSG_name__",
"default_locale": "en",
"description": "__MSG_desc__",
"action": {
"default_icon": {
"48": "assets\/icons\/logo.png",
"128": "assets\/icons\/logo.png"
},
"default_popup": "html\/popup.html",
"default_title": "__MSG_name__"
},
"content_scripts": [
{
"css": [
"assets\/css\/content.css"
],
"exclude_matches": [
"https:\/\/chat.openai.com\/*",
"https:\/\/chatgpt.com\/*"
],
"js": [
"scripts\/content.js"
],
"matches": [
"*:\/\/*\/*"
]
}
],
"icons": {
"16": "assets\/icons\/logo.png",
"19": "assets\/icons\/logo.png",
"32": "assets\/icons\/logo.png",
"38": "assets\/icons\/logo.png",
"48": "assets\/icons\/logo.png",
"128": "assets\/icons\/logo.png"
},
"background": {
"service_worker": "scripts\/bg.js"
},
"permissions": [
"storage",
"contextMenus",
"declarativeNetRequest",
"activeTab"
],
"host_permissions": [
"<all_urls>"
]
}