open-in icon indicating copy to clipboard operation
open-in copied to clipboard

Feature: Open Bookmark in brave

Open hunguy1970 opened this issue 3 years ago • 1 comments

Feature request, if possible. thx

hunguy1970 avatar Mar 06 '21 17:03 hunguy1970

@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: ['*://*/*']
    });

e-t-l avatar Oct 29 '21 22:10 e-t-l