Allows you to map controller buttons to keyboard combinations.
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": "TV Controller",
"description": "Allows you to map controller buttons to keyboard combinations.",
"developer": {
"name": "MÃ¥rten Ã…sberg",
"url": "http://Ã¥sberg.net/"
},
"version": "0.1.0",
"icons": {
"50": "icons/colorController.png"
},
"browser_action": {
"default_icon": {
"50": "icons/colorController.png"
},
"default_title": "TV Controller",
"default_popup": "popup/index.html"
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"browser-polyfill.min.js",
"content/controllerHandler.js"
]
}
],
"permissions": [
"storage",
"tabs"
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}