Viren Negi
unread,Feb 10, 2011, 5:30:29 AM2/10/11Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Chromium-extensions
Hello
I am new in Developing Chrome Extension I'm in need to access
bookmarks using Chrome API
1. In the Google Chrome Extension Documentation there is mention of
"chrome.bookmarks.getTree " but it some seem to return a function and
not actual bookmarks or bookmark object.
2. I'm also running into permission error for using the above API
(chrome.bookmarks.getTree) in background.html , even though the
permission is firmly given in manifest.json file
{
"name" : "Sync BookMark",
"background_page": "background.html",
"version" : "1.0",
"content_script" : {
"css" : ["bookmark.css"],
"js" : ["js/jquery.js","js/bookmark.js"]
},
"browser_action" : {
"default_icon" : "images/bookmark.png",
"default_title" : "Syn Bookmark",
"default_popup" : "bookmark.html"
},
"permission" : [
"bookmarks",
"management",
"experimental",
"contextMenu",
"unlimitedStorage",
"tab"
]
}
3. Is there a "callback" available to find out that user(overall) has
added or remove a bookmark from the chrome browser
Any One There Please Share some Light on it
Regard
Viren Negi