Skip to content
This repository was archived by the owner on Feb 27, 2024. It is now read-only.

Commit 2df918e

Browse files
committed
manifest updates, removed permissions
1 parent 7b15b0c commit 2df918e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

apiRunner.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ function parseApi(keys, rawData) {
6161
if (apiName == 'isLSEnabled') {
6262
status = parseLightstream(rawData['id']);
6363
}
64-
if (status === undefined) {status = ''}
6564
parseResult[humanApiName] = status
6665
}
6766
buildTable(parseResult)
@@ -71,6 +70,7 @@ function parseApi(keys, rawData) {
7170
function buildTable(parseResult) {
7271
for (var name in parseResult) {
7372
status = parseResult[name]
73+
if (status === 'undefined') {break; console.log('Break')}
7474
var template = $("#table-template").html();
7575
var tableRow = Mustache.render(template, {name: name, status: status});
7676
$("table").append(tableRow);

manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name" : "catToys",
3-
"version": "0.1",
3+
"version": "0.2",
44
"manifest_version": 2,
5+
"description": "A tool for looking up user information on Mixer.com",
56
"content_scripts": [
67
{
7-
"matches": ["<all_urls>"],
88
"js": ["content.js"]
99
}
1010
],

0 commit comments

Comments
 (0)