andy-portmen / open-in

Send URLs from one browser to another one
http://add0n.com/open-in.html
172 stars 113 forks source link

Feature: Open Bookmark in brave #57

Open hunguy1970 opened 3 years ago

hunguy1970 commented 3 years ago

Feature request, if possible. thx

e-t-l commented 2 years ago

@andy-portmen I believe this might actually be pretty straightforward. The bookmarks API permission would have to be added in each manifest.json, but besides that, I think the only change needed is to add the following under callback in common/common.js:

    chrome.contextMenus.create({
      id: 'open-current',
      title: app.locale.current,
      contexts: ['bookmark'],
      documentUrlPatterns: ['*://*/*']
    });