Inspect and view changes in MakerPort Media Linker 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": "MakerPort Media Linker",
"description": "Connect Internet media to MakerPort sensors.",
"short_name": "MakerPort",
"version": "1.4.0",
"manifest_version": 3,
"app": {
"background": {
"scripts": [
"app/js/background.js"
],
"persistent": false
}
},
"icons": {
"16": "app/img/makerport-16.png",
"128": "app/img/makerport-128.png",
"256": "app/img/makerport-256.png"
},
"permissions": [
"serial",
"identity",
"fileSystem",
"identity.email",
"unlimitedStorage",
"browser",
"webview",
"fullscreen"
],
"host_permissions": [
"http://*/*",
"https://*/*",
"http://localhost:8000/*"
],
"oauth2": {
"scopes": [
"https://www.googleapis.com/auth/drive",
"https://www.googleapis.com/auth/urlshortener"
],
"client_id": "138092914569-l96c4ek59vshrc4trvlicjhvmpip1med.apps.googleusercontent.com"
},
"sockets": {
"tcpServer": {
"listen": [
"127.0.0.1:8000"
]
}
},
"webview": {
"partitions": [
{
"name": "trusted",
"accessible_resources": [
"app/*"
]
}
]
}
}