Inspect and view changes in Praiseworld Radio 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "Praiseworld Radio",
"description": "Listen live on your favourite internet Gospel Radio Station with our free chrome extension.",
"version": "1.0.7",
"manifest_version": 2,
"browser_action": {
"default_icon": "icons/pwr-32.png",
"default_popup": "popup.html",
"default_title": "Listen here!"
},
"content_scripts": [
{
"matches": [
"https://cdn.voscast.com/",
"http://praiseworldradio.com/*",
"http://www.praiseworldradio.com/*",
"http://s3.voscast.com:7724/7.html"
],
"js": [
"js/vendor/jquery.js",
"js/content.js"
],
"css": [
"css/styles.css"
]
}
],
"icons": {
"128": "icons/pwr-128.png"
},
"background": {
"page": "background.html"
},
"permissions": [
"background",
"tabs",
"https://*/*",
"activeTab",
"storage"
],
"web_accessible_resources": [
"img/*.jpg"
],
"content_security_policy": "script-src 'self' https://cdn.voscast.com; object-src 'self'"
}