├── .eslintrc.json ├── .gitignore ├── .nvmrc ├── .vscode └── settings.json ├── README.md ├── components ├── CMDK.tsx ├── ConfigProvider.tsx ├── CopyButton.tsx ├── ErrorMsg.tsx ├── Full.tsx ├── LanguageSelector.tsx ├── Layout.tsx ├── OneColumn.tsx ├── OneColumnWithCard.tsx ├── SideMenu.tsx ├── ThemeProvider.tsx ├── ThemeToggle.tsx ├── ToolPageHeader.tsx ├── TowColumns.tsx ├── TransformCustom.tsx ├── TransformTextAreaToCode.tsx ├── pageDescription │ ├── AESDecryptDesc.tsx │ ├── AESEncryptDesc.tsx │ ├── Base64EncoderDesc.tsx │ ├── BasicAuthGeneratorDesc.tsx │ ├── BcryptDesc.tsx │ ├── CSVToJsonDesc.tsx │ ├── CaseConverterDesc.tsx │ ├── ColorConverterDesc.tsx │ ├── CrontabGeneratorDesc.tsx │ ├── DateTimeConverterDesc.tsx │ ├── EncryptTextDesc.tsx │ ├── EnvToNetlifyTomlDesc.tsx │ ├── EscapeHTMLEntitiesDesc.tsx │ ├── HashTextDesc.tsx │ ├── HmacGeneratorDesc.tsx │ ├── ImageToBase64Desc.tsx │ ├── IntegerBaseConverterDesc.tsx │ ├── JSONToTOMLDesc.tsx │ ├── JSONToXMLDesc.tsx │ ├── JavascriptMinifyDesc.tsx │ ├── JsonFormatterDesc.tsx │ ├── JsonToCsvDesc.tsx │ ├── JsonToYamlDesc.tsx │ ├── JwtParserDesc.tsx │ ├── MACAddressLookupDesc.tsx │ ├── MD5PageDesc.tsx │ ├── MarkdownToHtmlDesc.tsx │ ├── MimeTypeDesc.tsx │ ├── PasswordGeneratorDesc.tsx │ ├── QueryParamsToJSONDesc.tsx │ ├── RipemdDesc.tsx │ ├── RsaKeyPairGeneratorDesc.tsx │ ├── SHA1PageDesc.tsx │ ├── SQLFormatterDesc.tsx │ ├── SpeakingUrlGeneratorDesc.tsx │ ├── TOMLToJSONDesc.tsx │ ├── TOMLToYAMLDesc.tsx │ ├── TexToUnicodeDesc.tsx │ ├── TextDiffDesc.tsx │ ├── TokenGeneratorDesc.tsx │ ├── UrlEncoderDesc.tsx │ ├── UrlParserDesc.tsx │ ├── XMLFormatterDesc.tsx │ ├── XmlToJsonDesc.tsx │ ├── XssDefenceDesc.tsx │ ├── YAMLFormatterDesc.tsx │ ├── YAMLToTOMLDesc.tsx │ └── YAMLtoJSONDesc.tsx └── ui │ ├── DiffEditorUI.tsx │ ├── InputCopyable.tsx │ ├── InputUI.tsx │ ├── JSONEditor.tsx │ ├── SyntaxHighligherUI.tsx │ ├── TextAreaCopyable.tsx │ └── TextAreaUI.tsx ├── config.ts ├── env.d.ts ├── hooks └── useLocalStorageListener.tsx ├── index.d.ts ├── next-i18next.config.js ├── next.config.mjs ├── package.json ├── pages ├── 404.tsx ├── 500.tsx ├── _app.tsx ├── _document.tsx ├── converter │ ├── base-64-encoder.tsx │ ├── case-converter.tsx │ ├── color-converter.tsx │ ├── csv-to-json.tsx │ ├── date-time-converter.tsx │ ├── env-to-netlify-toml.tsx │ ├── escape-html-entities.tsx │ ├── image-to-base64.tsx │ ├── integer-base-converter.tsx │ ├── json-to-csv.tsx │ ├── json-to-toml.tsx │ ├── json-to-xml.tsx │ ├── json-to-yaml.tsx │ ├── markdown-to-html.tsx │ ├── query-params-to-json.tsx │ ├── text-to-unicode.tsx │ ├── toml-to-json.tsx │ ├── toml-to-yaml.tsx │ ├── xml-to-json.tsx │ ├── yaml-to-json.tsx │ └── yaml-to-toml.tsx ├── crypto │ ├── aes-decrypt.tsx │ ├── aes-encrypt.tsx │ ├── md5.tsx │ ├── ripemd.tsx │ ├── rsa-key-pair-generator.tsx │ └── sha1.tsx ├── dev │ ├── bcrypt.tsx │ ├── crontab-generator.tsx │ ├── encrypt-text.tsx │ ├── hash-text.tsx │ ├── hmac-generator.tsx │ ├── javascript-minify.tsx │ ├── jwt-parser.tsx │ ├── password-generator.tsx │ ├── sql-formatter.tsx │ ├── token-generator.tsx │ └── yaml-formatter.tsx ├── fonts │ ├── GeistMonoVF.woff │ └── GeistVF.woff ├── index.tsx ├── net │ └── mac-address-lookup.tsx ├── security │ └── xss-defence.tsx ├── text │ └── text-diff.tsx └── web │ ├── basic-auth-generator.tsx │ ├── json-formatter.tsx │ ├── mime-types.tsx │ ├── speaking-url-generator.tsx │ ├── url-encoder.tsx │ ├── url-parser.tsx │ └── xml-formatter.tsx ├── pnpm-lock.yaml ├── postcss.config.mjs ├── public ├── android-chrome-144x144.png ├── android-chrome-192x192.png ├── android-chrome-256x256.png ├── android-chrome-36x36.png ├── android-chrome-384x384.png ├── android-chrome-48x48.png ├── android-chrome-512x512.png ├── android-chrome-72x72.png ├── android-chrome-96x96.png ├── apple-touch-icon-114x114.png ├── apple-touch-icon-120x120.png ├── apple-touch-icon-144x144.png ├── apple-touch-icon-152x152.png ├── apple-touch-icon-180x180.png ├── apple-touch-icon-57x57.png ├── apple-touch-icon-60x60.png ├── apple-touch-icon-72x72.png ├── apple-touch-icon-76x76.png ├── apple-touch-icon.png ├── banner.png ├── browserconfig.xml ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── locales │ ├── de_DE │ │ ├── common.json │ │ └── toolList.json │ ├── en │ │ ├── common.json │ │ └── toolList.json │ ├── es │ │ └── toolList.json │ ├── fr │ │ ├── common.json │ │ └── toolList.json │ ├── it │ │ ├── common.json │ │ └── toolList.json │ ├── ja │ │ ├── common.json │ │ └── toolList.json │ ├── ko │ │ ├── common.json │ │ └── toolList.json │ ├── nl │ │ ├── common.json │ │ └── toolList.json │ ├── pl │ │ ├── common.json │ │ └── toolList.json │ ├── pt │ │ ├── common.json │ │ └── toolList.json │ ├── ru │ │ ├── common.json │ │ └── toolList.json │ ├── sv │ │ ├── common.json │ │ └── toolList.json │ ├── tr │ │ ├── common.json │ │ └── toolList.json │ └── zh-CN │ │ ├── common.json │ │ └── toolList.json ├── mstile-144x144.png ├── mstile-150x150.png ├── mstile-310x150.png ├── mstile-310x310.png ├── mstile-70x70.png ├── robots.txt └── safari-pinned-tab.svg ├── scripts └── genAntdCss.tsx ├── store ├── actionTypes.ts ├── favoriteTools │ └── favoriteToolsReducer.ts ├── hooks.ts ├── reducers.ts └── store.ts ├── styles ├── Home.module.scss ├── components │ ├── CMDK.module.scss │ ├── Layout.module.scss │ ├── SideMenu.module.scss │ ├── SyntaxHighlighter.module.scss │ └── TextAreaCopyable.module.scss ├── globals.css ├── globals.scss └── variables │ ├── JSONEditor.scss │ └── _variables.scss ├── tailwind.config.ts ├── tsconfig.json └── utils ├── baseUtils.ts ├── components ├── base64.utils.ts ├── csv-to-json.utils.ts ├── date-time-converter.utils.ts ├── env-to-toml.utils.ts ├── hash.utils.ts ├── integer-base-converter.utils.ts ├── json-to-csv.utils.ts ├── jwt-parser.utils.ts ├── query-params-to-json.utils.ts ├── rsa-key-pair-generator.utils.ts └── text-to-unicode.utils.ts ├── const.tsx ├── defaults.ts ├── error.ts ├── theme.ts └── toolsList.tsx /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20.16.0 -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/README.md -------------------------------------------------------------------------------- /components/CMDK.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/CMDK.tsx -------------------------------------------------------------------------------- /components/ConfigProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/ConfigProvider.tsx -------------------------------------------------------------------------------- /components/CopyButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/CopyButton.tsx -------------------------------------------------------------------------------- /components/ErrorMsg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/ErrorMsg.tsx -------------------------------------------------------------------------------- /components/Full.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/Full.tsx -------------------------------------------------------------------------------- /components/LanguageSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/LanguageSelector.tsx -------------------------------------------------------------------------------- /components/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/Layout.tsx -------------------------------------------------------------------------------- /components/OneColumn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/OneColumn.tsx -------------------------------------------------------------------------------- /components/OneColumnWithCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/OneColumnWithCard.tsx -------------------------------------------------------------------------------- /components/SideMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/SideMenu.tsx -------------------------------------------------------------------------------- /components/ThemeProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/ThemeProvider.tsx -------------------------------------------------------------------------------- /components/ThemeToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/ThemeToggle.tsx -------------------------------------------------------------------------------- /components/ToolPageHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/ToolPageHeader.tsx -------------------------------------------------------------------------------- /components/TowColumns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/TowColumns.tsx -------------------------------------------------------------------------------- /components/TransformCustom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/TransformCustom.tsx -------------------------------------------------------------------------------- /components/TransformTextAreaToCode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/TransformTextAreaToCode.tsx -------------------------------------------------------------------------------- /components/pageDescription/AESDecryptDesc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/pageDescription/AESDecryptDesc.tsx -------------------------------------------------------------------------------- /components/pageDescription/AESEncryptDesc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/pageDescription/AESEncryptDesc.tsx -------------------------------------------------------------------------------- /components/pageDescription/Base64EncoderDesc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/pageDescription/Base64EncoderDesc.tsx -------------------------------------------------------------------------------- /components/pageDescription/BasicAuthGeneratorDesc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/pageDescription/BasicAuthGeneratorDesc.tsx -------------------------------------------------------------------------------- /components/pageDescription/BcryptDesc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/pageDescription/BcryptDesc.tsx -------------------------------------------------------------------------------- /components/pageDescription/CSVToJsonDesc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/pageDescription/CSVToJsonDesc.tsx -------------------------------------------------------------------------------- /components/pageDescription/CaseConverterDesc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/pageDescription/CaseConverterDesc.tsx -------------------------------------------------------------------------------- /components/pageDescription/ColorConverterDesc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/pageDescription/ColorConverterDesc.tsx -------------------------------------------------------------------------------- /components/pageDescription/CrontabGeneratorDesc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/pageDescription/CrontabGeneratorDesc.tsx -------------------------------------------------------------------------------- /components/pageDescription/DateTimeConverterDesc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/pageDescription/DateTimeConverterDesc.tsx -------------------------------------------------------------------------------- /components/pageDescription/EncryptTextDesc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/pageDescription/EncryptTextDesc.tsx -------------------------------------------------------------------------------- /components/pageDescription/EnvToNetlifyTomlDesc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/pageDescription/EnvToNetlifyTomlDesc.tsx -------------------------------------------------------------------------------- /components/pageDescription/EscapeHTMLEntitiesDesc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/pageDescription/EscapeHTMLEntitiesDesc.tsx -------------------------------------------------------------------------------- /components/pageDescription/HashTextDesc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/pageDescription/HashTextDesc.tsx -------------------------------------------------------------------------------- /components/pageDescription/HmacGeneratorDesc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/pageDescription/HmacGeneratorDesc.tsx -------------------------------------------------------------------------------- /components/pageDescription/ImageToBase64Desc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/pageDescription/ImageToBase64Desc.tsx -------------------------------------------------------------------------------- /components/pageDescription/IntegerBaseConverterDesc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/pageDescription/IntegerBaseConverterDesc.tsx -------------------------------------------------------------------------------- /components/pageDescription/JSONToTOMLDesc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/pageDescription/JSONToTOMLDesc.tsx -------------------------------------------------------------------------------- /components/pageDescription/JSONToXMLDesc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/pageDescription/JSONToXMLDesc.tsx -------------------------------------------------------------------------------- /components/pageDescription/JavascriptMinifyDesc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/pageDescription/JavascriptMinifyDesc.tsx -------------------------------------------------------------------------------- /components/pageDescription/JsonFormatterDesc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/pageDescription/JsonFormatterDesc.tsx -------------------------------------------------------------------------------- /components/pageDescription/JsonToCsvDesc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/pageDescription/JsonToCsvDesc.tsx -------------------------------------------------------------------------------- /components/pageDescription/JsonToYamlDesc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/pageDescription/JsonToYamlDesc.tsx -------------------------------------------------------------------------------- /components/pageDescription/JwtParserDesc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/pageDescription/JwtParserDesc.tsx -------------------------------------------------------------------------------- /components/pageDescription/MACAddressLookupDesc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/pageDescription/MACAddressLookupDesc.tsx -------------------------------------------------------------------------------- /components/pageDescription/MD5PageDesc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/pageDescription/MD5PageDesc.tsx -------------------------------------------------------------------------------- /components/pageDescription/MarkdownToHtmlDesc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/pageDescription/MarkdownToHtmlDesc.tsx -------------------------------------------------------------------------------- /components/pageDescription/MimeTypeDesc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/pageDescription/MimeTypeDesc.tsx -------------------------------------------------------------------------------- /components/pageDescription/PasswordGeneratorDesc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/pageDescription/PasswordGeneratorDesc.tsx -------------------------------------------------------------------------------- /components/pageDescription/QueryParamsToJSONDesc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/pageDescription/QueryParamsToJSONDesc.tsx -------------------------------------------------------------------------------- /components/pageDescription/RipemdDesc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/pageDescription/RipemdDesc.tsx -------------------------------------------------------------------------------- /components/pageDescription/RsaKeyPairGeneratorDesc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/pageDescription/RsaKeyPairGeneratorDesc.tsx -------------------------------------------------------------------------------- /components/pageDescription/SHA1PageDesc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/pageDescription/SHA1PageDesc.tsx -------------------------------------------------------------------------------- /components/pageDescription/SQLFormatterDesc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/pageDescription/SQLFormatterDesc.tsx -------------------------------------------------------------------------------- /components/pageDescription/SpeakingUrlGeneratorDesc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/pageDescription/SpeakingUrlGeneratorDesc.tsx -------------------------------------------------------------------------------- /components/pageDescription/TOMLToJSONDesc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/pageDescription/TOMLToJSONDesc.tsx -------------------------------------------------------------------------------- /components/pageDescription/TOMLToYAMLDesc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/pageDescription/TOMLToYAMLDesc.tsx -------------------------------------------------------------------------------- /components/pageDescription/TexToUnicodeDesc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/pageDescription/TexToUnicodeDesc.tsx -------------------------------------------------------------------------------- /components/pageDescription/TextDiffDesc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/pageDescription/TextDiffDesc.tsx -------------------------------------------------------------------------------- /components/pageDescription/TokenGeneratorDesc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/pageDescription/TokenGeneratorDesc.tsx -------------------------------------------------------------------------------- /components/pageDescription/UrlEncoderDesc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/pageDescription/UrlEncoderDesc.tsx -------------------------------------------------------------------------------- /components/pageDescription/UrlParserDesc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/pageDescription/UrlParserDesc.tsx -------------------------------------------------------------------------------- /components/pageDescription/XMLFormatterDesc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/pageDescription/XMLFormatterDesc.tsx -------------------------------------------------------------------------------- /components/pageDescription/XmlToJsonDesc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/pageDescription/XmlToJsonDesc.tsx -------------------------------------------------------------------------------- /components/pageDescription/XssDefenceDesc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/pageDescription/XssDefenceDesc.tsx -------------------------------------------------------------------------------- /components/pageDescription/YAMLFormatterDesc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/pageDescription/YAMLFormatterDesc.tsx -------------------------------------------------------------------------------- /components/pageDescription/YAMLToTOMLDesc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/pageDescription/YAMLToTOMLDesc.tsx -------------------------------------------------------------------------------- /components/pageDescription/YAMLtoJSONDesc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/pageDescription/YAMLtoJSONDesc.tsx -------------------------------------------------------------------------------- /components/ui/DiffEditorUI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/ui/DiffEditorUI.tsx -------------------------------------------------------------------------------- /components/ui/InputCopyable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/ui/InputCopyable.tsx -------------------------------------------------------------------------------- /components/ui/InputUI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/ui/InputUI.tsx -------------------------------------------------------------------------------- /components/ui/JSONEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/ui/JSONEditor.tsx -------------------------------------------------------------------------------- /components/ui/SyntaxHighligherUI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/ui/SyntaxHighligherUI.tsx -------------------------------------------------------------------------------- /components/ui/TextAreaCopyable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/ui/TextAreaCopyable.tsx -------------------------------------------------------------------------------- /components/ui/TextAreaUI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/components/ui/TextAreaUI.tsx -------------------------------------------------------------------------------- /config.ts: -------------------------------------------------------------------------------- 1 | export const appConfig = { 2 | gaId: process.env.NEXT_PUBLIC_GA_ID || "", 3 | }; 4 | -------------------------------------------------------------------------------- /env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/env.d.ts -------------------------------------------------------------------------------- /hooks/useLocalStorageListener.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/hooks/useLocalStorageListener.tsx -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/index.d.ts -------------------------------------------------------------------------------- /next-i18next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/next-i18next.config.js -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/package.json -------------------------------------------------------------------------------- /pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/404.tsx -------------------------------------------------------------------------------- /pages/500.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/500.tsx -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/_document.tsx -------------------------------------------------------------------------------- /pages/converter/base-64-encoder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/converter/base-64-encoder.tsx -------------------------------------------------------------------------------- /pages/converter/case-converter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/converter/case-converter.tsx -------------------------------------------------------------------------------- /pages/converter/color-converter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/converter/color-converter.tsx -------------------------------------------------------------------------------- /pages/converter/csv-to-json.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/converter/csv-to-json.tsx -------------------------------------------------------------------------------- /pages/converter/date-time-converter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/converter/date-time-converter.tsx -------------------------------------------------------------------------------- /pages/converter/env-to-netlify-toml.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/converter/env-to-netlify-toml.tsx -------------------------------------------------------------------------------- /pages/converter/escape-html-entities.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/converter/escape-html-entities.tsx -------------------------------------------------------------------------------- /pages/converter/image-to-base64.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/converter/image-to-base64.tsx -------------------------------------------------------------------------------- /pages/converter/integer-base-converter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/converter/integer-base-converter.tsx -------------------------------------------------------------------------------- /pages/converter/json-to-csv.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/converter/json-to-csv.tsx -------------------------------------------------------------------------------- /pages/converter/json-to-toml.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/converter/json-to-toml.tsx -------------------------------------------------------------------------------- /pages/converter/json-to-xml.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/converter/json-to-xml.tsx -------------------------------------------------------------------------------- /pages/converter/json-to-yaml.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/converter/json-to-yaml.tsx -------------------------------------------------------------------------------- /pages/converter/markdown-to-html.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/converter/markdown-to-html.tsx -------------------------------------------------------------------------------- /pages/converter/query-params-to-json.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/converter/query-params-to-json.tsx -------------------------------------------------------------------------------- /pages/converter/text-to-unicode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/converter/text-to-unicode.tsx -------------------------------------------------------------------------------- /pages/converter/toml-to-json.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/converter/toml-to-json.tsx -------------------------------------------------------------------------------- /pages/converter/toml-to-yaml.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/converter/toml-to-yaml.tsx -------------------------------------------------------------------------------- /pages/converter/xml-to-json.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/converter/xml-to-json.tsx -------------------------------------------------------------------------------- /pages/converter/yaml-to-json.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/converter/yaml-to-json.tsx -------------------------------------------------------------------------------- /pages/converter/yaml-to-toml.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/converter/yaml-to-toml.tsx -------------------------------------------------------------------------------- /pages/crypto/aes-decrypt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/crypto/aes-decrypt.tsx -------------------------------------------------------------------------------- /pages/crypto/aes-encrypt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/crypto/aes-encrypt.tsx -------------------------------------------------------------------------------- /pages/crypto/md5.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/crypto/md5.tsx -------------------------------------------------------------------------------- /pages/crypto/ripemd.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/crypto/ripemd.tsx -------------------------------------------------------------------------------- /pages/crypto/rsa-key-pair-generator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/crypto/rsa-key-pair-generator.tsx -------------------------------------------------------------------------------- /pages/crypto/sha1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/crypto/sha1.tsx -------------------------------------------------------------------------------- /pages/dev/bcrypt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/dev/bcrypt.tsx -------------------------------------------------------------------------------- /pages/dev/crontab-generator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/dev/crontab-generator.tsx -------------------------------------------------------------------------------- /pages/dev/encrypt-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/dev/encrypt-text.tsx -------------------------------------------------------------------------------- /pages/dev/hash-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/dev/hash-text.tsx -------------------------------------------------------------------------------- /pages/dev/hmac-generator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/dev/hmac-generator.tsx -------------------------------------------------------------------------------- /pages/dev/javascript-minify.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/dev/javascript-minify.tsx -------------------------------------------------------------------------------- /pages/dev/jwt-parser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/dev/jwt-parser.tsx -------------------------------------------------------------------------------- /pages/dev/password-generator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/dev/password-generator.tsx -------------------------------------------------------------------------------- /pages/dev/sql-formatter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/dev/sql-formatter.tsx -------------------------------------------------------------------------------- /pages/dev/token-generator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/dev/token-generator.tsx -------------------------------------------------------------------------------- /pages/dev/yaml-formatter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/dev/yaml-formatter.tsx -------------------------------------------------------------------------------- /pages/fonts/GeistMonoVF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/fonts/GeistMonoVF.woff -------------------------------------------------------------------------------- /pages/fonts/GeistVF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/fonts/GeistVF.woff -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /pages/net/mac-address-lookup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/net/mac-address-lookup.tsx -------------------------------------------------------------------------------- /pages/security/xss-defence.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/security/xss-defence.tsx -------------------------------------------------------------------------------- /pages/text/text-diff.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/text/text-diff.tsx -------------------------------------------------------------------------------- /pages/web/basic-auth-generator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/web/basic-auth-generator.tsx -------------------------------------------------------------------------------- /pages/web/json-formatter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/web/json-formatter.tsx -------------------------------------------------------------------------------- /pages/web/mime-types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/web/mime-types.tsx -------------------------------------------------------------------------------- /pages/web/speaking-url-generator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/web/speaking-url-generator.tsx -------------------------------------------------------------------------------- /pages/web/url-encoder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/web/url-encoder.tsx -------------------------------------------------------------------------------- /pages/web/url-parser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/web/url-parser.tsx -------------------------------------------------------------------------------- /pages/web/xml-formatter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pages/web/xml-formatter.tsx -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/android-chrome-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/public/android-chrome-144x144.png -------------------------------------------------------------------------------- /public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/android-chrome-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/public/android-chrome-256x256.png -------------------------------------------------------------------------------- /public/android-chrome-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/public/android-chrome-36x36.png -------------------------------------------------------------------------------- /public/android-chrome-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/public/android-chrome-384x384.png -------------------------------------------------------------------------------- /public/android-chrome-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/public/android-chrome-48x48.png -------------------------------------------------------------------------------- /public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/android-chrome-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/public/android-chrome-72x72.png -------------------------------------------------------------------------------- /public/android-chrome-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/public/android-chrome-96x96.png -------------------------------------------------------------------------------- /public/apple-touch-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/public/apple-touch-icon-114x114.png -------------------------------------------------------------------------------- /public/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/public/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /public/apple-touch-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/public/apple-touch-icon-144x144.png -------------------------------------------------------------------------------- /public/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/public/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /public/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/public/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /public/apple-touch-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/public/apple-touch-icon-57x57.png -------------------------------------------------------------------------------- /public/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/public/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /public/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/public/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /public/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/public/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/public/banner.png -------------------------------------------------------------------------------- /public/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/public/browserconfig.xml -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/locales/de_DE/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /public/locales/de_DE/toolList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/public/locales/de_DE/toolList.json -------------------------------------------------------------------------------- /public/locales/en/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /public/locales/en/toolList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/public/locales/en/toolList.json -------------------------------------------------------------------------------- /public/locales/es/toolList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/public/locales/es/toolList.json -------------------------------------------------------------------------------- /public/locales/fr/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /public/locales/fr/toolList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/public/locales/fr/toolList.json -------------------------------------------------------------------------------- /public/locales/it/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /public/locales/it/toolList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/public/locales/it/toolList.json -------------------------------------------------------------------------------- /public/locales/ja/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /public/locales/ja/toolList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/public/locales/ja/toolList.json -------------------------------------------------------------------------------- /public/locales/ko/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /public/locales/ko/toolList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/public/locales/ko/toolList.json -------------------------------------------------------------------------------- /public/locales/nl/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /public/locales/nl/toolList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/public/locales/nl/toolList.json -------------------------------------------------------------------------------- /public/locales/pl/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /public/locales/pl/toolList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/public/locales/pl/toolList.json -------------------------------------------------------------------------------- /public/locales/pt/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /public/locales/pt/toolList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/public/locales/pt/toolList.json -------------------------------------------------------------------------------- /public/locales/ru/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /public/locales/ru/toolList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/public/locales/ru/toolList.json -------------------------------------------------------------------------------- /public/locales/sv/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /public/locales/sv/toolList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/public/locales/sv/toolList.json -------------------------------------------------------------------------------- /public/locales/tr/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /public/locales/tr/toolList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/public/locales/tr/toolList.json -------------------------------------------------------------------------------- /public/locales/zh-CN/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /public/locales/zh-CN/toolList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/public/locales/zh-CN/toolList.json -------------------------------------------------------------------------------- /public/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/public/mstile-144x144.png -------------------------------------------------------------------------------- /public/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/public/mstile-150x150.png -------------------------------------------------------------------------------- /public/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/public/mstile-310x150.png -------------------------------------------------------------------------------- /public/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/public/mstile-310x310.png -------------------------------------------------------------------------------- /public/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/public/mstile-70x70.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: -------------------------------------------------------------------------------- /public/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/public/safari-pinned-tab.svg -------------------------------------------------------------------------------- /scripts/genAntdCss.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/scripts/genAntdCss.tsx -------------------------------------------------------------------------------- /store/actionTypes.ts: -------------------------------------------------------------------------------- 1 | export const ADD_FAVORITE_TOOL = "addFavoriteTool"; 2 | -------------------------------------------------------------------------------- /store/favoriteTools/favoriteToolsReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/store/favoriteTools/favoriteToolsReducer.ts -------------------------------------------------------------------------------- /store/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/store/hooks.ts -------------------------------------------------------------------------------- /store/reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/store/reducers.ts -------------------------------------------------------------------------------- /store/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/store/store.ts -------------------------------------------------------------------------------- /styles/Home.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/styles/Home.module.scss -------------------------------------------------------------------------------- /styles/components/CMDK.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/styles/components/CMDK.module.scss -------------------------------------------------------------------------------- /styles/components/Layout.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/styles/components/Layout.module.scss -------------------------------------------------------------------------------- /styles/components/SideMenu.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/styles/components/SideMenu.module.scss -------------------------------------------------------------------------------- /styles/components/SyntaxHighlighter.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/styles/components/SyntaxHighlighter.module.scss -------------------------------------------------------------------------------- /styles/components/TextAreaCopyable.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/styles/components/TextAreaCopyable.module.scss -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/styles/globals.css -------------------------------------------------------------------------------- /styles/globals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/styles/globals.scss -------------------------------------------------------------------------------- /styles/variables/JSONEditor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/styles/variables/JSONEditor.scss -------------------------------------------------------------------------------- /styles/variables/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/styles/variables/_variables.scss -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils/baseUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/utils/baseUtils.ts -------------------------------------------------------------------------------- /utils/components/base64.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/utils/components/base64.utils.ts -------------------------------------------------------------------------------- /utils/components/csv-to-json.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/utils/components/csv-to-json.utils.ts -------------------------------------------------------------------------------- /utils/components/date-time-converter.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/utils/components/date-time-converter.utils.ts -------------------------------------------------------------------------------- /utils/components/env-to-toml.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/utils/components/env-to-toml.utils.ts -------------------------------------------------------------------------------- /utils/components/hash.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/utils/components/hash.utils.ts -------------------------------------------------------------------------------- /utils/components/integer-base-converter.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/utils/components/integer-base-converter.utils.ts -------------------------------------------------------------------------------- /utils/components/json-to-csv.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/utils/components/json-to-csv.utils.ts -------------------------------------------------------------------------------- /utils/components/jwt-parser.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/utils/components/jwt-parser.utils.ts -------------------------------------------------------------------------------- /utils/components/query-params-to-json.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/utils/components/query-params-to-json.utils.ts -------------------------------------------------------------------------------- /utils/components/rsa-key-pair-generator.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/utils/components/rsa-key-pair-generator.utils.ts -------------------------------------------------------------------------------- /utils/components/text-to-unicode.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/utils/components/text-to-unicode.utils.ts -------------------------------------------------------------------------------- /utils/const.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/utils/const.tsx -------------------------------------------------------------------------------- /utils/defaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/utils/defaults.ts -------------------------------------------------------------------------------- /utils/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/utils/error.ts -------------------------------------------------------------------------------- /utils/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/utils/theme.ts -------------------------------------------------------------------------------- /utils/toolsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C-Nikola/kilotools/HEAD/utils/toolsList.tsx --------------------------------------------------------------------------------