| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- "use strict";
- exports.queryImpl = function (query) {
- return function () {
- return browser.tabs.query(query);
- };
- };
- exports["browserRemove'"] = function (tabs) {
- return function () {
- return browser.tabs.remove(tabs);
- };
- };
- exports["browserUpdate'"] = function () {
- return function (updateProperties) {
- return function (tabId) {
- return function () {
- return browser.tabs.update(tabId, updateProperties);
- };
- };
- };
- };
- exports["browserMoveTab"] = function (tabIds) {
- return function (moveProperties) {
- return function () {
- return browser.tabs.move(tabIds, moveProperties);
- };
- };
- };
- exports["browserCreateTab"] = function (union) {
- return function (createProperties) {
- return function () {
- return browser.tabs.create(createProperties);
- };
- };
- };
- exports["browserHideTabs"] = function (tabIds) {
- return function () {
- return browser.tabs.hide(tabIds);
- }
- }
- exports["browserShowTabs"] = function (tabIds) {
- return function () {
- return browser.tabs.show(tabIds);
- }
- }
|