Inspect and view changes in Fantasy Free Agent 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": "Fantasy Free Agent",
"version": "1.0",
"description": "Find out if a player is available in your Yahoo baseball league anywhere on the web.",
"permissions": [
"tabs",
"storage",
"declarativeContent",
"activeTab",
"cookies",
"https://lvh.me/",
"https://fantasyfa.com/"
],
"commands": {
"getPlayers": {
"suggested_key": {
"default": "Alt + X"
},
"description": "Send list of players."
}
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"browser_action": {
"default_popup": "index.html",
"default_icon": {
"16": "images/baseball16.png",
"32": "images/baseball32.png",
"48": "images/baseball48.png",
"128": "images/baseball32.png"
}
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js",
"test.js"
]
}
],
"icons": {
"16": "images/baseball16.png",
"32": "images/baseball32.png",
"48": "images/baseball48.png",
"128": "images/baseball128.png"
},
"web_accessible_resources": [
"images/*"
],
"manifest_version": 2
}