mirror of
https://github.com/kou029w/_.git
synced 2025-02-24 17:55:16 +00:00
6 lines
127 B
TypeScript
6 lines
127 B
TypeScript
export default defineContentScript({
|
|
matches: ["*://*.google.com/*"],
|
|
main() {
|
|
console.log("Hello content.");
|
|
},
|
|
});
|