├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── deploy-docs.sh ├── dist ├── Anki.4-10-0.0.ls ├── AntiProcrastination.4-10-0.0.ls ├── CopyCutPaste.4-10-0.0.ls ├── Dictionary.4-10-0.0.ls ├── DuckDuckGo.4-10-0.0.ls ├── EnglishJapaneseDictionary.4-10-0.0.ls ├── Google.4-10-0.0.ls ├── HackerNews.4-10-0.0.ls ├── Keyboard.4-10-0.0.ls ├── Netflix.1-0-1.0.ls ├── NewTab.4-10-0.0.ls ├── PeriodFix.4-10-0.0.ls ├── Reddit.4-10-0.0.ls ├── Scroll.4-10-0.0.ls ├── Spotify.0-0-9.0.ls ├── Timer.4-10-0.0.ls ├── TopSites.4-10-0.0.ls ├── Weather.4-10-0.0.ls └── Wikipedia.4-10-0.0.ls ├── docs ├── .vitepress │ ├── config.ts │ └── theme │ │ ├── custom.css │ │ └── index.js ├── api-reference │ ├── README.md │ ├── command.md │ ├── customstt.md │ ├── plugin.md │ ├── pluginbase-util.md │ ├── script.md │ └── test.md ├── architecture.md ├── assets │ ├── AntiProcrastination.ts │ ├── Gmail.ts │ ├── GmailMoveFolder.ts │ ├── HelloWorld.ja.ts │ ├── HelloWorld.ts │ ├── Weather.ts │ └── img │ │ ├── add-a-local-plugin.png │ │ ├── developer-mode.png │ │ ├── hello-world-alert.png │ │ ├── help-screen.png │ │ ├── icon-128.png │ │ ├── icon-48.png │ │ ├── lang-option.png │ │ ├── local-plugin-added.png │ │ └── plugin-supported-langs.png ├── contexts.md ├── dynamic-matching.md ├── glossary.md ├── help.md ├── index.md ├── langs.md ├── plugin-level-settings.md ├── public │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── browserconfig.xml │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── icon-128.png │ ├── mstile-150x150.png │ ├── safari-pinned-tab.svg │ └── site.webmanifest ├── quick-start.md ├── recipes.md └── testing.md ├── package.json ├── src ├── @types │ └── wanakana.d.ts ├── Anki │ └── Anki.ts ├── AntiProcrastination │ ├── AntiProcrastination.ru.ts │ └── AntiProcrastination.ts ├── CopyCutPaste │ ├── CopyCutPaste.ja.ts │ ├── CopyCutPaste.ts │ └── CopyCutPaste.uk.ts ├── Dictionary │ ├── Dictionary.ja.ts │ └── Dictionary.ts ├── DuckDuckGo │ └── DuckDuckGo.ts ├── EnglishJapaneseDictionary │ ├── EnglishJapaneseDictionary.ja.ts │ └── EnglishJapaneseDictionary.ts ├── Google │ ├── Google.ja.ts │ ├── Google.ru.ts │ ├── Google.ts │ └── Google.uk.ts ├── HackerNews │ ├── HackerNews.ru.ts │ └── HackerNews.ts ├── Keyboard │ ├── Keyboard.ja.ts │ ├── Keyboard.ru.ts │ └── Keyboard.ts ├── Netflix │ └── Netflix.ts ├── NewTab │ └── NewTab.ts ├── PeriodFix │ └── PeriodFix.ts ├── Reddit │ ├── Reddit.ja.ts │ ├── Reddit.ru.ts │ ├── Reddit.ts │ └── util.ts ├── Scroll │ ├── Scroll.es.ts │ ├── Scroll.fr.ts │ ├── Scroll.ja.ts │ ├── Scroll.ru.ts │ ├── Scroll.ts │ └── Scroll.uk.ts ├── Spotify │ └── Spotify.ts ├── Timer │ ├── Timer.ru.ts │ └── Timer.ts ├── TopSites │ ├── TopSites.ja.ts │ ├── TopSites.ru.ts │ ├── TopSites.ts │ └── TopSites.uk.ts ├── Weather │ ├── Weather.ja.ts │ ├── Weather.ru.ts │ └── Weather.ts └── Wikipedia │ ├── Wikipedia.ru.ts │ └── Wikipedia.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/README.md -------------------------------------------------------------------------------- /deploy-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/deploy-docs.sh -------------------------------------------------------------------------------- /dist/Anki.4-10-0.0.ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/dist/Anki.4-10-0.0.ls -------------------------------------------------------------------------------- /dist/AntiProcrastination.4-10-0.0.ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/dist/AntiProcrastination.4-10-0.0.ls -------------------------------------------------------------------------------- /dist/CopyCutPaste.4-10-0.0.ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/dist/CopyCutPaste.4-10-0.0.ls -------------------------------------------------------------------------------- /dist/Dictionary.4-10-0.0.ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/dist/Dictionary.4-10-0.0.ls -------------------------------------------------------------------------------- /dist/DuckDuckGo.4-10-0.0.ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/dist/DuckDuckGo.4-10-0.0.ls -------------------------------------------------------------------------------- /dist/EnglishJapaneseDictionary.4-10-0.0.ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/dist/EnglishJapaneseDictionary.4-10-0.0.ls -------------------------------------------------------------------------------- /dist/Google.4-10-0.0.ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/dist/Google.4-10-0.0.ls -------------------------------------------------------------------------------- /dist/HackerNews.4-10-0.0.ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/dist/HackerNews.4-10-0.0.ls -------------------------------------------------------------------------------- /dist/Keyboard.4-10-0.0.ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/dist/Keyboard.4-10-0.0.ls -------------------------------------------------------------------------------- /dist/Netflix.1-0-1.0.ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/dist/Netflix.1-0-1.0.ls -------------------------------------------------------------------------------- /dist/NewTab.4-10-0.0.ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/dist/NewTab.4-10-0.0.ls -------------------------------------------------------------------------------- /dist/PeriodFix.4-10-0.0.ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/dist/PeriodFix.4-10-0.0.ls -------------------------------------------------------------------------------- /dist/Reddit.4-10-0.0.ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/dist/Reddit.4-10-0.0.ls -------------------------------------------------------------------------------- /dist/Scroll.4-10-0.0.ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/dist/Scroll.4-10-0.0.ls -------------------------------------------------------------------------------- /dist/Spotify.0-0-9.0.ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/dist/Spotify.0-0-9.0.ls -------------------------------------------------------------------------------- /dist/Timer.4-10-0.0.ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/dist/Timer.4-10-0.0.ls -------------------------------------------------------------------------------- /dist/TopSites.4-10-0.0.ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/dist/TopSites.4-10-0.0.ls -------------------------------------------------------------------------------- /dist/Weather.4-10-0.0.ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/dist/Weather.4-10-0.0.ls -------------------------------------------------------------------------------- /dist/Wikipedia.4-10-0.0.ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/dist/Wikipedia.4-10-0.0.ls -------------------------------------------------------------------------------- /docs/.vitepress/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/docs/.vitepress/config.ts -------------------------------------------------------------------------------- /docs/.vitepress/theme/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/docs/.vitepress/theme/custom.css -------------------------------------------------------------------------------- /docs/.vitepress/theme/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/docs/.vitepress/theme/index.js -------------------------------------------------------------------------------- /docs/api-reference/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/api-reference/command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/docs/api-reference/command.md -------------------------------------------------------------------------------- /docs/api-reference/customstt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/docs/api-reference/customstt.md -------------------------------------------------------------------------------- /docs/api-reference/plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/docs/api-reference/plugin.md -------------------------------------------------------------------------------- /docs/api-reference/pluginbase-util.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/docs/api-reference/pluginbase-util.md -------------------------------------------------------------------------------- /docs/api-reference/script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/docs/api-reference/script.md -------------------------------------------------------------------------------- /docs/api-reference/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/docs/api-reference/test.md -------------------------------------------------------------------------------- /docs/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/docs/architecture.md -------------------------------------------------------------------------------- /docs/assets/AntiProcrastination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/docs/assets/AntiProcrastination.ts -------------------------------------------------------------------------------- /docs/assets/Gmail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/docs/assets/Gmail.ts -------------------------------------------------------------------------------- /docs/assets/GmailMoveFolder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/docs/assets/GmailMoveFolder.ts -------------------------------------------------------------------------------- /docs/assets/HelloWorld.ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/docs/assets/HelloWorld.ja.ts -------------------------------------------------------------------------------- /docs/assets/HelloWorld.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/docs/assets/HelloWorld.ts -------------------------------------------------------------------------------- /docs/assets/Weather.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/docs/assets/Weather.ts -------------------------------------------------------------------------------- /docs/assets/img/add-a-local-plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/docs/assets/img/add-a-local-plugin.png -------------------------------------------------------------------------------- /docs/assets/img/developer-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/docs/assets/img/developer-mode.png -------------------------------------------------------------------------------- /docs/assets/img/hello-world-alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/docs/assets/img/hello-world-alert.png -------------------------------------------------------------------------------- /docs/assets/img/help-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/docs/assets/img/help-screen.png -------------------------------------------------------------------------------- /docs/assets/img/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/docs/assets/img/icon-128.png -------------------------------------------------------------------------------- /docs/assets/img/icon-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/docs/assets/img/icon-48.png -------------------------------------------------------------------------------- /docs/assets/img/lang-option.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/docs/assets/img/lang-option.png -------------------------------------------------------------------------------- /docs/assets/img/local-plugin-added.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/docs/assets/img/local-plugin-added.png -------------------------------------------------------------------------------- /docs/assets/img/plugin-supported-langs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/docs/assets/img/plugin-supported-langs.png -------------------------------------------------------------------------------- /docs/contexts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/docs/contexts.md -------------------------------------------------------------------------------- /docs/dynamic-matching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/docs/dynamic-matching.md -------------------------------------------------------------------------------- /docs/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/docs/glossary.md -------------------------------------------------------------------------------- /docs/help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/docs/help.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/langs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/docs/langs.md -------------------------------------------------------------------------------- /docs/plugin-level-settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/docs/plugin-level-settings.md -------------------------------------------------------------------------------- /docs/public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/docs/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /docs/public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/docs/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /docs/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/docs/public/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/public/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/docs/public/browserconfig.xml -------------------------------------------------------------------------------- /docs/public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/docs/public/favicon-16x16.png -------------------------------------------------------------------------------- /docs/public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/docs/public/favicon-32x32.png -------------------------------------------------------------------------------- /docs/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/docs/public/favicon.ico -------------------------------------------------------------------------------- /docs/public/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/docs/public/icon-128.png -------------------------------------------------------------------------------- /docs/public/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/docs/public/mstile-150x150.png -------------------------------------------------------------------------------- /docs/public/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/docs/public/safari-pinned-tab.svg -------------------------------------------------------------------------------- /docs/public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/docs/public/site.webmanifest -------------------------------------------------------------------------------- /docs/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/docs/quick-start.md -------------------------------------------------------------------------------- /docs/recipes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/docs/recipes.md -------------------------------------------------------------------------------- /docs/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/docs/testing.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/package.json -------------------------------------------------------------------------------- /src/@types/wanakana.d.ts: -------------------------------------------------------------------------------- 1 | declare module "wanakana"; 2 | -------------------------------------------------------------------------------- /src/Anki/Anki.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/src/Anki/Anki.ts -------------------------------------------------------------------------------- /src/AntiProcrastination/AntiProcrastination.ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/src/AntiProcrastination/AntiProcrastination.ru.ts -------------------------------------------------------------------------------- /src/AntiProcrastination/AntiProcrastination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/src/AntiProcrastination/AntiProcrastination.ts -------------------------------------------------------------------------------- /src/CopyCutPaste/CopyCutPaste.ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/src/CopyCutPaste/CopyCutPaste.ja.ts -------------------------------------------------------------------------------- /src/CopyCutPaste/CopyCutPaste.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/src/CopyCutPaste/CopyCutPaste.ts -------------------------------------------------------------------------------- /src/CopyCutPaste/CopyCutPaste.uk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/src/CopyCutPaste/CopyCutPaste.uk.ts -------------------------------------------------------------------------------- /src/Dictionary/Dictionary.ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/src/Dictionary/Dictionary.ja.ts -------------------------------------------------------------------------------- /src/Dictionary/Dictionary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/src/Dictionary/Dictionary.ts -------------------------------------------------------------------------------- /src/DuckDuckGo/DuckDuckGo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/src/DuckDuckGo/DuckDuckGo.ts -------------------------------------------------------------------------------- /src/EnglishJapaneseDictionary/EnglishJapaneseDictionary.ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/src/EnglishJapaneseDictionary/EnglishJapaneseDictionary.ja.ts -------------------------------------------------------------------------------- /src/EnglishJapaneseDictionary/EnglishJapaneseDictionary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/src/EnglishJapaneseDictionary/EnglishJapaneseDictionary.ts -------------------------------------------------------------------------------- /src/Google/Google.ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/src/Google/Google.ja.ts -------------------------------------------------------------------------------- /src/Google/Google.ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/src/Google/Google.ru.ts -------------------------------------------------------------------------------- /src/Google/Google.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/src/Google/Google.ts -------------------------------------------------------------------------------- /src/Google/Google.uk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/src/Google/Google.uk.ts -------------------------------------------------------------------------------- /src/HackerNews/HackerNews.ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/src/HackerNews/HackerNews.ru.ts -------------------------------------------------------------------------------- /src/HackerNews/HackerNews.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/src/HackerNews/HackerNews.ts -------------------------------------------------------------------------------- /src/Keyboard/Keyboard.ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/src/Keyboard/Keyboard.ja.ts -------------------------------------------------------------------------------- /src/Keyboard/Keyboard.ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/src/Keyboard/Keyboard.ru.ts -------------------------------------------------------------------------------- /src/Keyboard/Keyboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/src/Keyboard/Keyboard.ts -------------------------------------------------------------------------------- /src/Netflix/Netflix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/src/Netflix/Netflix.ts -------------------------------------------------------------------------------- /src/NewTab/NewTab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/src/NewTab/NewTab.ts -------------------------------------------------------------------------------- /src/PeriodFix/PeriodFix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/src/PeriodFix/PeriodFix.ts -------------------------------------------------------------------------------- /src/Reddit/Reddit.ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/src/Reddit/Reddit.ja.ts -------------------------------------------------------------------------------- /src/Reddit/Reddit.ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/src/Reddit/Reddit.ru.ts -------------------------------------------------------------------------------- /src/Reddit/Reddit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/src/Reddit/Reddit.ts -------------------------------------------------------------------------------- /src/Reddit/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/src/Reddit/util.ts -------------------------------------------------------------------------------- /src/Scroll/Scroll.es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/src/Scroll/Scroll.es.ts -------------------------------------------------------------------------------- /src/Scroll/Scroll.fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/src/Scroll/Scroll.fr.ts -------------------------------------------------------------------------------- /src/Scroll/Scroll.ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/src/Scroll/Scroll.ja.ts -------------------------------------------------------------------------------- /src/Scroll/Scroll.ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/src/Scroll/Scroll.ru.ts -------------------------------------------------------------------------------- /src/Scroll/Scroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/src/Scroll/Scroll.ts -------------------------------------------------------------------------------- /src/Scroll/Scroll.uk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/src/Scroll/Scroll.uk.ts -------------------------------------------------------------------------------- /src/Spotify/Spotify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/src/Spotify/Spotify.ts -------------------------------------------------------------------------------- /src/Timer/Timer.ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/src/Timer/Timer.ru.ts -------------------------------------------------------------------------------- /src/Timer/Timer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/src/Timer/Timer.ts -------------------------------------------------------------------------------- /src/TopSites/TopSites.ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/src/TopSites/TopSites.ja.ts -------------------------------------------------------------------------------- /src/TopSites/TopSites.ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/src/TopSites/TopSites.ru.ts -------------------------------------------------------------------------------- /src/TopSites/TopSites.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/src/TopSites/TopSites.ts -------------------------------------------------------------------------------- /src/TopSites/TopSites.uk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/src/TopSites/TopSites.uk.ts -------------------------------------------------------------------------------- /src/Weather/Weather.ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/src/Weather/Weather.ja.ts -------------------------------------------------------------------------------- /src/Weather/Weather.ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/src/Weather/Weather.ru.ts -------------------------------------------------------------------------------- /src/Weather/Weather.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/src/Weather/Weather.ts -------------------------------------------------------------------------------- /src/Wikipedia/Wikipedia.ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/src/Wikipedia/Wikipedia.ru.ts -------------------------------------------------------------------------------- /src/Wikipedia/Wikipedia.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/src/Wikipedia/Wikipedia.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LipSurf/plugins/HEAD/tsconfig.json --------------------------------------------------------------------------------