bookmarks.remove()
method removes a single bookmark or an empty bookmark folder.
警告: If your extension attempts to remove a bookmark from the bookmarks tree root node, the call will raise an error with the message: "The bookmark root cannot be modified" and the bookmark won't be removed.
This is an asynchronous function that returns a
Promise
.
var removingBookmark = browser.bookmarks.remove(
id
// string
)
id
A
string
specifying the ID of the bookmark or empty folder to remove.
A
Promise
that will be fulfilled with no arguments.
If the node corresponding to the
id
parameter can't be found or was a non-empty folder, the promise is rejected with an error message.
function onRemoved() {
console
.
log
(
"Removed!"
)
;
}
function
onRejected
(
error
)
{
console
.
log
(
`
An error:
${
error
}
`
)
;
}
var
bookmarkId
=
"abcdefghijkl"
;
var
removingBookmark
=
浏览器
.
bookmarks
.
remove
(
bookmarkId
)
;
removingBookmark
.
then
(
onRemoved
,
onRejected
)
;
BCD tables only load in the browser
注意:
This API is based on Chromium's
chrome.bookmarks
API. This documentation is derived from
bookmarks.json
in the Chromium code.
Microsoft Edge compatibility data is supplied by Microsoft Corporation and is included here under the Creative Commons Attribution 3.0 United States License.
最后修改: , 由 MDN 贡献者