mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-03 14:28:39 +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);
|
||
|
|
}
|