From acaa9ceb182060cff18bdccc35e1cb28dacaeaf8 Mon Sep 17 00:00:00 2001 From: Daniel Escobedo Date: Tue, 8 Mar 2016 08:49:16 -0800 Subject: [PATCH 1/2] Updated ReadMe to Include New Chrome Web Store Link --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6ff5ff3..de93f6d 100644 --- a/README.md +++ b/README.md @@ -14,9 +14,9 @@ YASB is a Google Chrome Extension that automatically add shoes on a page to the -------------------------------------------------------------------- -This is the source code distribution of YASB. A compiled 'ready to use' version (.CRX) can be found here: +This is the source code distribution of YASB. A compiled 'ready to use' version can be found on the Chrome Web Store: -https://github.com/mrboomer/yasb/releases/download/v0.4.0/yasb.crx.zip +https://chrome.google.com/webstore/detail/yet-another-shoe-bot/fblacoodeipcdfnahcnakjiphkpfcmfg If you are a developer and want to contribute to YASB, check out the repository at GitHub: From 6d64c9cd4074f522d4f5bba0f6bb870341d53235 Mon Sep 17 00:00:00 2001 From: Daniel Escobedo Date: Tue, 8 Mar 2016 08:59:02 -0800 Subject: [PATCH 2/2] Updated Linter Control Comments --- js/background.js | 2 +- js/content.js | 2 +- js/options.js | 2 +- js/popup.js | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/js/background.js b/js/background.js index b46f8d3..4555617 100644 --- a/js/background.js +++ b/js/background.js @@ -23,7 +23,7 @@ * */ -/*global chrome */ +/* global chrome */ // Initialialize Variables, Badge Name and Color chrome.storage.local.set({'yasbActive': true, 'sizeSelected': false}); diff --git a/js/content.js b/js/content.js index 3b5dacc..c03d975 100644 --- a/js/content.js +++ b/js/content.js @@ -23,7 +23,7 @@ * */ -/*globals $, chrome, window, setInterval, footlocker */ +/* globals $, chrome, window, document, setInterval, clearInterval */ function loadSettings(callback) { chrome.storage.local.get(['yasbActive', 'sizeSelected', 'shoeSize', 'checkout'], function(response) { diff --git a/js/options.js b/js/options.js index 914d8bd..b704d8c 100644 --- a/js/options.js +++ b/js/options.js @@ -23,7 +23,7 @@ * */ -/*global $, chrome, Materialize */ +/* global $, chrome, Materialize */ var $shoeSizeInput = $('#shoe-size'), $checkoutInput = $('#to-checkout'), diff --git a/js/popup.js b/js/popup.js index da03907..5aa86db 100644 --- a/js/popup.js +++ b/js/popup.js @@ -23,7 +23,7 @@ * */ -/*global $, chrome*/ +/* global $, chrome*/ var $yasbButton = $('.yasb-toggle'), $settingsButton = $('.settings');