This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function saveClaude() { | |
| // Try multiple selectors — claude.ai's class names shift periodically. | |
| // Order matters: most specific first, fallback to <main> as last resort. | |
| const candidateSelectors = [ | |
| '.flex-1.flex.flex-col.px-4.max-w-3xl.mx-auto.w-full.pt-1', | |
| 'div[class*="max-w-3xl"][class*="mx-auto"][class*="flex-col"]', | |
| 'main div[class*="max-w-3xl"]', | |
| 'main' | |
| ]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .previous-next-container { | |
| text-align: center; | |
| } |