1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
"use strict"; const PluginArray = require("../generated/PluginArray"); const MimeTypeArray = require("../generated/MimeTypeArray"); exports.implementation = class NavigatorPluginsImpl { get plugins() { return PluginArray.create(this._globalObject); } get mimeTypes() { return MimeTypeArray.create(this._globalObject); } javaEnabled() { return false; } };