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": "Trends Pocket - Analyze Google Trends in real-time",
"version": "3.0.18",
"description": "Explore trending topics and analyze Google Trends data in real-time. Track, visualize, and understand search patterns instantly.",
"permissions": [
"storage",
"tabs",
"sidePanel",
"downloads"
],
"host_permissions": [
"https:\/\/www.google.com\/*",
"https:\/\/google.com\/*",
"https:\/\/trends.google.com\/*",
"https:\/\/trends-pocket-api.trendspocket.workers.dev\/*",
"https:\/\/gnews.io\/*"
],
"side_panel": {
"default_path": "sidepanel.html"
},
"action": {
"default_title": "Open Trends Pocket"
},
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.google.com\/*",
"https:\/\/google.com\/*",
"https:\/\/trends.google.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_idle"
}
],
"background": {
"service_worker": "background.js"
}
}