At the top of your document, put the line:
const { Cc, Ci, Cu } = require('chrome');
and Components.classestry using Ccinstead of Components.interfacestry Ci.
var bmsvc = Cc["@mozilla.org/browser/nav-bookmarks-service;1"]
.getService(Ci.nsINavBookmarksService);
This should work, if not, put a link to your public add-on or sample code and a link to the documentation site.
source
share