Inspect and view changes in TV Time source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"author": "TV Time Max",
"background": {
"page": "background.html",
"persistent": true
},
"browser_action": {
"default_icon": "images/icon_128_white.png",
"default_popup": "popup.html",
"default_title": ""
},
"content_scripts": [
{
"js": [
"dist/libs/jquery.js",
"dist/content-scripts/dom.js"
],
"matches": [
"http://*/*",
"https://*/*"
]
},
{
"css": [
"dist/cs.css"
],
"js": [
"dist/libs/jquery.js",
"dist/content-scripts/fb.js"
],
"matches": [
"*://www.facebook.com/*",
"*://facebook.com/*"
]
},
{
"css": [
"dist/cs.css"
],
"js": [
"dist/libs/jquery.js",
"dist/content-scripts/twitter.js"
],
"matches": [
"*://www.twitter.com/*",
"*://twitter.com/*"
]
}
],
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
"description": "Automatically check-in on TV Time when you watch an episode from anywhere on the web.",
"icons": {
"32": "images/icon_32.png",
"128": "images/icon_128.png"
},
"manifest_version": 2,
"minimum_chrome_version": "33",
"name": "TV Time",
"permissions": [
"tabs",
"alarms",
"identity",
"storage",
"webNavigation",
"webRequest",
"http://*.tvshowtime.com/",
"http://*.tvshowtime.com/*",
"https://*.tvshowtime.com/",
"https://*.tvshowtime.com/*",
"https://*.tvtime.com/",
"https://*.tvtime.com/*",
"*://www.facebook.com/*",
"*://facebook.com/*"
],
"update_url": "https://clients2.google.com/service/update2/crx",
"version": "0.4.0",
"web_accessible_resources": [
"dist/cs.css",
"fonts/*"
]
}