MCPcopy Create free account
hub / github.com/QLHazyCoder/FlowPilot / getCategoryTabLabel

Function getCategoryTabLabel

content/gmail-mail.js:227–236  ·  view source on GitHub ↗
(tab)

Source from the content-addressed store, hash-verified

225}
226
227function getCategoryTabLabel(tab) {
228 const text = normalizeText(
229 tab?.getAttribute?.('aria-label')
230 || tab?.getAttribute?.('data-tooltip')
231 || tab?.getAttribute?.('title')
232 || tab?.textContent
233 || ''
234 );
235 return text;
236}
237
238function collectCategoryTabs() {
239 const tabs = Array.from(document.querySelectorAll('[role="tab"], [data-tooltip-align][role="link"]'));

Callers 1

collectCategoryTabsFunction · 0.85

Calls 1

normalizeTextFunction · 0.70

Tested by

no test coverage detected