This commit is contained in:
meishibiezb
2026-05-01 20:02:55 +08:00
commit a25145638f
18 changed files with 5818 additions and 0 deletions

6
entrypoints/content.ts Normal file
View File

@@ -0,0 +1,6 @@
export default defineContentScript({
matches: ['*://*.google.com/*'],
main() {
console.log('Hello content.');
},
});