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": "TickerTrends - Trend Analytics & Social Insights",
"description": "Reveal trending keywords, Google Trends, and social signals for any website \u2014 real-time insights to power smarter decisions.",
"version": "1.2",
"permissions": [
"storage",
"scripting",
"activeTab",
"alarms"
],
"host_permissions": [
"https:\/\/*\/*",
"http:\/\/*\/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/trends.google.com\/trends\/*"
],
"js": [
"contentScript.js"
],
"run_at": "document_idle"
},
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"exclude_globs": [
"chrome:\/\/*\/*",
"chrome-extension:\/\/*\/*",
"edge:\/\/*\/*",
"about:*"
],
"js": [
"trendingInject.js"
],
"run_at": "document_start"
}
],
"action": {
"default_icon": {
"48": "images\/logo.png",
"128": "images\/logo.png"
}
},
"icons": {
"48": "images\/logo.png",
"128": "images\/logo.png"
},
"web_accessible_resources": [
{
"resources": [
"images\/*",
"trendingInject.js"
],
"matches": [
"https:\/\/*\/*",
"http:\/\/*\/*"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}