-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathcontract.ts
146 lines (121 loc) · 2.54 KB
/
contract.ts
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
export enum SpecialMessage {
UpdateActiveFrameId = 'UpdateActiveFrameId'
}
export enum StorageItemKey {
Menu = 'menu'
, Config = 'config'
}
export interface IStorage {
[StorageItemKey.Menu]: IMenuStore
[StorageItemKey.Config]: IConfigStore
}
export type IMenuStore = Array<{
context: MenuContext
items: IMenuItem[]
}>
export interface IMenuItem {
id: string
visible: boolean
}
export enum MenuContext {
Page = 'page'
, Frame = 'frame'
, Link = 'link'
, Selection = 'selection'
, Image = 'image'
, Audio = 'audio'
, Video = 'video'
}
export interface IConfigStore {
url: IURLConfig
html: IHTMLConfig
markdown: IMarkdownConfig
}
export interface IURLConfig {
format: URLFormat
encoding: URLEncoding
}
export enum URLFormat {
Original
, Absolute
, Relative
, RootRelative
}
export enum URLEncoding {
Original
, Encode
, Decode
}
export interface IMarkdownConfig {
emphasis: MarkdownEmphasis
strong: MarkdownStrong
bulletUnordered: MarkdownBullet
bulletOrdered: MarkdownBulletOrdered
listItemIndent: MarkdownListItemIndent
thematicBreak: MarkdownThematicBreak
fence: MarkdownFence
}
export enum MarkdownBullet {
'-'
, '*'
, '+'
}
export enum MarkdownBulletOrdered {
'.'
, ')'
}
export enum MarkdownEmphasis {
'*'
, '_'
}
export enum MarkdownFence {
'`'
, '~'
}
export enum MarkdownListItemIndent {
Space
, Tab
}
export enum MarkdownThematicBreak {
'*'
, '-'
, '_'
}
export enum MarkdownStrong {
'*'
, '_'
}
export interface IHTMLConfig {
formatHTML: boolean
cleanHTML: IHTMLCleanHTMLConfig
}
export interface IHTMLCleanHTMLConfig {
allowlist: IHTMLCleanerAllowlistItem[]
}
export interface IHTMLCleanerAllowlistItem {
elements: string
attributes: string
}
export interface IFrameAPI {
getSelectionHTML(): string | null
getSelectionText(): string | null
getActiveElementTextContent(): string | null
getDocumentTitle(): string
}
export const OffscreenChannel = 'offscreen'
export interface IBackgroundAPI {
getConfig(): IConfigStore
setConfig(config: IConfigStore): null
getMenu(): IMenuStore
setMenu(menu: IMenuStore): null
}
export interface IOffscreenAPI {
writeTextToClipboard(text: string): null
writeHTMLToClipboard(html: string): null
sanitizeHTML(html: string): string
convertHTMLToPlainText(html: string): string
cleanHTML(html: string, config: IHTMLCleanHTMLConfig): string
convertHTMLToMarkdown(html: string, config: IMarkdownConfig): string
cleanAllHTMLAttributes(html: string): string
formatURLsInHTML(html: string, baseURL: string, config: IURLConfig): string
}