Я хочу удалить разрешение геолокации на моем веб-сайте
https://developer.chrome.com/apps/permissions
chrome.permissions.remove({
permissions: ['geolocation'],
}, function(removed) {
if (removed) {
// The permissions have been removed.
} else {
// The permissions have not been removed (e.g., you tried to remove
// required permissions).
}
});
Я получаю эту ошибкуL
Невозможно прочитать свойство 'удалить' из неопределенного
Мой manifest.json
:
{
"manifest_version": 2,
"name": "Permissions Example",
"description": "Permissions Example",
"version": "1.0",
"permissions": [
"tabs",
"geolocation"
],
"optional_permissions": [
"history"
]
}
Добавить в проект:
<link href="manifest.json" rel="manifest">
Где моя ошибка?