mirror of
https://github.com/skidoodle/hostinfo
synced 2026-04-28 01:27:36 +02:00
7 lines
127 B
TypeScript
7 lines
127 B
TypeScript
export default defineContentScript({
|
|
matches: ['*://*.google.com/*'],
|
|
main() {
|
|
console.log('Hello content.');
|
|
},
|
|
});
|