basic storage class layout. closes #6

This commit is contained in:
princiya 2017-05-17 19:14:15 +02:00
Родитель 8648c99bb3
Коммит fb8b5b57c5
2 изменённых файлов: 23 добавлений и 1 удалений

Просмотреть файл

@ -14,7 +14,8 @@
"permissions": [
"webRequest",
"<all_urls>",
"tabs"
"tabs",
"storage"
],
"browser_action": {

21
storage.js Normal file
Просмотреть файл

@ -0,0 +1,21 @@
class storage {
constructor() {
return this.store;
}
create() {
//add to the store object
}
read() {
//read from the store
}
update() {
//update the store
}
remove() {
//delete from the store
}
}