mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-22 04:13:06 +09:00
15 lines
327 B
JavaScript
15 lines
327 B
JavaScript
"use strict";
|
|
|
|
/* exported isPageActionShown clickPageAction */
|
|
|
|
const {classes: Cc, interfaces: Ci, utils: Cu} = Components;
|
|
|
|
Cu.import("resource://gre/modules/PageActions.jsm");
|
|
|
|
function isPageActionShown(uuid) {
|
|
return PageActions.isShown(uuid);
|
|
}
|
|
|
|
function clickPageAction(uuid) {
|
|
PageActions.synthesizeClick(uuid);
|
|
}
|