“Chrome.storage.local.remove Пример” Ответ

Chrome.storage.local.remove Пример

// Completely clear the storage. All items are removed.
chrome.storage.local.clear(() => {
    console.log('Everything was removed');
});

// Remove items under a certain key
const key = 'myKey';
chrome.storage.local.remove([key], (result) => {
  console.log('Removed items for the key: ' + key);
});
Shadow

Chrome.storage.local Delete

chrome.storage.local.remove(["Key1","key2"],function(){
 var error = chrome.runtime.lastError;
    if (error) {
        console.error(error);
    }
})
Shadow

Ответы похожие на “Chrome.storage.local.remove Пример”

Вопросы похожие на “Chrome.storage.local.remove Пример”

Смотреть популярные ответы по языку

Смотреть другие языки программирования