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": "AI Tab by fujm",
"short_name": "AI Screen",
"version": "3.1",
"description": "Unlock instant AI insights from any webpage using a powerful, built-in Google Gemini model.",
"permissions": [
"activeTab",
"scripting",
"storage"
],
"host_permissions": [
"https:\/\/generativelanguage.googleapis.com\/*"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
}
},
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "s.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"js\/prism.min.js",
"js\/prism-python.min.js",
"js\/prism-javascript.min.js",
"js\/prism-python.js",
"js\/prism-javascript.js",
"css\/prism-tomorrow.min.css"
],
"matches": [
"<all_urls>"
]
}
]
}