unique numbers, profname

This commit is contained in:
Sriram Hariharan
2018-07-09 02:00:30 -05:00
parent d4e77f1df3
commit 78df19b304
3 changed files with 40 additions and 14 deletions

View File

@@ -0,0 +1,6 @@
let changeColor = document.getElementById('changeColor');
chrome.storage.sync.get('color', function(data) {
changeColor.style.backgroundColor = data.color;
changeColor.setAttribute('value', data.color);
});