Inspect and view changes in Blind Racer 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": "Blind Racer",
"version": "1.0",
"description": "Removes the racing aspect from type racer, so that you can focus on typing",
"icons": {
"32": "icons/blind_racer_32.jpg",
"48": "icons/blind_racer_48.jpg",
"64": "icons/blind_racer_64.jpg",
"96": "icons/blind_racer_96.jpg",
"128": "icons/blind_racer_128.jpg"
},
"content_scripts": [
{
"matches": [
"*://*.typeracer.com/*"
],
"js": [
"blind_racer.js"
]
}
]
}