Inspect and view changes in SLTrib+ 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",
"manifest_version": 2,
"name": "SLTrib+",
"description": "Modifies the look and feel of the Salt Lake Tribune, as well as providing some much needed performance enhancements.",
"version": "0.6",
"icons": {
"16": "16.png",
"48": "48.png",
"128": "128.png"
},
"permissions": [
"tabs",
"http://www.sltrib.com/*"
],
"content_scripts": [
{
"matches": [
"http://*.sltrib.com/*"
],
"js": [
"popup.js"
],
"css": [
"hider.css"
],
"run_at": "document_end"
}
],
"page_action": {
"default_icon": "128.png"
}
}