diff --git a/clients/chrome/background.js b/clients/chrome/background.js index 777b73ae..1a73f494 100644 --- a/clients/chrome/background.js +++ b/clients/chrome/background.js @@ -1,4 +1,3 @@ -/// var connections = []; // A list of "ports", i.e. connected clients (such as web pages). Multiple web // pages can connect to our service: they all receive the same data. @@ -41,7 +40,7 @@ function findNewDevices() { function main() { // Register new clients in the [ports] global variable. chrome.runtime.onConnectExternal.addListener(function (port) { - if (/^(micro:bit|touchdevelop|yelm|pxt|codemicrobit|codethemicrobit)$/.test(port.name)) { + if (/^(micro:bit|touchdevelop|yelm|pxt|codemicrobit|codethemicrobit|pxt.microbit.org)$/.test(port.name)) { ports.push(port); port.onDisconnect.addListener(function () { ports = ports.filter(function (x) { return x != port; }); diff --git a/clients/chrome/logo128.png b/clients/chrome/logo128.png index eae35f4c..02027906 100644 Binary files a/clients/chrome/logo128.png and b/clients/chrome/logo128.png differ diff --git a/clients/chrome/logo48.png b/clients/chrome/logo48.png index 0af483f8..02027906 100644 Binary files a/clients/chrome/logo48.png and b/clients/chrome/logo48.png differ diff --git a/clients/chrome/manifest.json b/clients/chrome/manifest.json index 18daf0f6..fa61c001 100644 --- a/clients/chrome/manifest.json +++ b/clients/chrome/manifest.json @@ -6,10 +6,10 @@ }, "manifest_version": 2, - "name": "code the micro:bit", - "version": "0.6.0", + "name": "pxt.microbit.org", + "version": "0.7.0", "author": "Microsoft Corporation", - "short_name": "code the micro:bit", + "short_name": "pxt.microbit.org", "description": "Extension for https://pxt.microbit.org.", "homepage_url": "https://pxt.microbit.org",