mirror of
https://github.com/skidoodle/hostinfo
synced 2025-03-16 13:59:38 +01:00
6 lines
127 B
TypeScript
6 lines
127 B
TypeScript
export default defineContentScript({
|
|
matches: ['*://*.google.com/*'],
|
|
main() {
|
|
console.log('Hello content.');
|
|
},
|
|
});
|