6f6ce33bbd
Co-authored-by: Aaron Klinker <aaronklinker1@gmail.com>
7 lines
127 B
TypeScript
Vendored
7 lines
127 B
TypeScript
Vendored
export default defineContentScript({
|
|
matches: ['*://*.google.com/*'],
|
|
main() {
|
|
console.log('Hello content.');
|
|
},
|
|
});
|