Write on the margins of the internet. Powered by the AT Protocol. margin.at
extension web atproto comments
at main 14 lines 359 B view raw
1import { defineContentScript } from 'wxt/sandbox'; 2import { initContentScript } from '@/utils/overlay'; 3 4export default defineContentScript({ 5 matches: ['<all_urls>'], 6 runAt: 'document_idle', 7 cssInjectionMode: 'ui', 8 9 async main(ctx) { 10 if (window.location.href.includes('/pdfjs/web/viewer.html')) return; 11 12 await initContentScript(ctx); 13 }, 14});