diff options
Diffstat (limited to 'src/gmail_selectors.ts')
| -rw-r--r-- | src/gmail_selectors.ts | 12 | 
1 files changed, 12 insertions, 0 deletions
| diff --git a/src/gmail_selectors.ts b/src/gmail_selectors.ts index 70b91e1..63f1242 100644 --- a/src/gmail_selectors.ts +++ b/src/gmail_selectors.ts @@ -1,5 +1,17 @@  export type GmailCSSClass = string; +type GmailSelector = string;  export const TOOLS_PANEL: GmailCSSClass = 'bAw';  export const SIDEBAR: GmailCSSClass = 'aeN';  export const MESSAGE_PAGER: GmailCSSClass = 'AO'; + +export const INDEX: GmailSelector = '.BltHke.nH.oy8Mbf[role="main"]'; +export const PAGER: GmailSelector = '.nH.g.id'; + + +// Index: +// .BltHke.nH.oy8Mbf[role="main"] +// +// Pager: +// .nH[role="main"] +// .nH.g.id | 
