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": "Twitch Link Hover Preview",
"version": "1.0.0",
"description": "Shows quick preview popups for YouTube and Twitter links when hovering in Twitch chat",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"permissions": [],
"host_permissions": [
"https:\/\/www.youtube.com\/*",
"https:\/\/api.fxtwitter.com\/*",
"https:\/\/video.twimg.com\/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.twitch.tv\/*"
],
"js": [
"config.js",
"content.js"
],
"css": [
"styles.css"
],
"run_at": "document_idle"
}
]
}