basic storage class layout. closes #6
This commit is contained in:
Родитель
8648c99bb3
Коммит
fb8b5b57c5
|
@ -14,7 +14,8 @@
|
|||
"permissions": [
|
||||
"webRequest",
|
||||
"<all_urls>",
|
||||
"tabs"
|
||||
"tabs",
|
||||
"storage"
|
||||
],
|
||||
|
||||
"browser_action": {
|
||||
|
|
|
@ -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
|
||||
}
|
||||
}
|
Загрузка…
Ссылка в новой задаче