Inspect and view changes in Run-Timer 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
{
"manifest_version": 2,
"name": "Run-Timer",
"version": "1.0.3",
"description": "A efficient tool used for retiming youtube and twitch videos.",
"homepage_url": "https://github.com/Evil004/Run-Timer",
"icons": {
"128": "icon128.png"
},
"browser_action": {
"default_popup": "popup.html"
},
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"https://www.youtube.com/*",
"https://youtu.be/*",
"https://player.twitch.tv/*",
"https://www.twitch.tv/*"
],
"js": [
"scripts/injectToVideoPlayer.js"
],
"all_frames": true
},
{
"matches": [
"https://www.speedrun.com/*"
],
"js": [
"scripts/injectSRC.js"
],
"all_frames": true
}
],
"browser_specific_settings": {
"gecko": {
"id": "{a2ee914a-f2c7-4443-a554-263b8aebac7f}"
}
}
}