package ezjs_extension

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Source file browser_action_browser.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
open Ezjs_min
open Promise
include Browser_common.Browser_action

let get_title ?tabId ?windowId f =
  let details : tabDetails t = Unsafe.obj [||] in
  details##.tabId := Optdef.option tabId;
  details##.windowId := Optdef.option windowId;
  jthen (browserAction##getTitle details) (fun s -> f (to_string s))

let get_popup ?tabId ?windowId f =
  let details : tabDetails t = Unsafe.obj [||] in
  details##.tabId := Optdef.option tabId;
  details##.windowId := Optdef.option windowId;
  jthen (browserAction##getPopup details) (fun s -> f (to_string s))

let get_badge ?tabId ?windowId f =
  let details : tabDetails t = Unsafe.obj [||] in
  details##.tabId := Optdef.option tabId;
  details##.windowId := Optdef.option windowId;
  jthen (browserAction##getBadgeText details) (fun s -> f (to_string s))

let get_badge_bg ?tabId ?windowId f =
  let details : tabDetails t = Unsafe.obj [||] in
  details##.tabId := Optdef.option tabId;
  details##.windowId := Optdef.option windowId;
  jthen (browserAction##getBadgeBackgroundColor details) f

let get_badge_color ?tabId ?windowId f =
  let details : tabDetails t = Unsafe.obj [||] in
  details##.tabId := Optdef.option tabId;
  details##.windowId := Optdef.option windowId;
  jthen (browserAction##getBadgeTextColor details) f

let isEnabled ?tabId ?windowId f =
  let details : tabDetails t = Unsafe.obj [||] in
  details##.tabId := Optdef.option tabId;
  details##.windowId := Optdef.option windowId;
  jthen (browserAction##isEnabled details) (fun b -> f (to_bool b))
OCaml

Innovation. Community. Security.