mirror of
https://github.com/abhijithvijayan/web-extension-starter.git
synced 2025-10-07 07:22:37 +02:00
11 lines
326 B
TypeScript
11 lines
326 B
TypeScript
import WhoOwnsEnhancer from "./page-enhancers/who-owns-enhancer";
|
|
import WhoWantsEnhancer from "./page-enhancers/who-wants-enhancer";
|
|
|
|
if (window.location.href.includes("who-owns.php")) {
|
|
WhoOwnsEnhancer.enhance(document);
|
|
}
|
|
|
|
if (window.location.href.includes("who-wants.php")) {
|
|
WhoWantsEnhancer.enhance(document);
|
|
}
|