mirror of
https://github.com/vale981/tridactyl
synced 2025-03-12 13:36:38 -04:00
11 lines
364 B
TypeScript
11 lines
364 B
TypeScript
![]() |
/** Content script entry point */
|
||
|
|
||
|
// Be careful: typescript elides imports that appear not to be used if they're
|
||
|
// assigned to a name. If you want an import just for its side effects, make
|
||
|
// sure you import it like this:
|
||
|
import "./keydown_content"
|
||
|
import "./commandline_content"
|
||
|
import "./excmds_content"
|
||
|
|
||
|
console.log("Tridactyl content script loaded, boss!")
|