mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-26 01:19:33 +02:00
Added user types to filter the tools based on targeted audience
This commit is contained in:
@@ -17,5 +17,6 @@ export const tool = defineTool('json', {
|
||||
'json',
|
||||
'string'
|
||||
],
|
||||
userTypes: ['Developers'],
|
||||
component: lazy(() => import('./index'))
|
||||
});
|
||||
|
@@ -9,5 +9,6 @@ export const tool = defineTool('string', {
|
||||
'A simple tool to encode or decode data using Base64, which is commonly used in web applications.',
|
||||
shortDescription: 'Encode or decode data using Base64.',
|
||||
keywords: ['base64'],
|
||||
userTypes: ['Developers', 'CyberSec'],
|
||||
component: lazy(() => import('./index'))
|
||||
});
|
||||
|
@@ -12,5 +12,6 @@ export const tool = defineTool('string', {
|
||||
longDescription:
|
||||
'With this online tool, you can censor certain words in any text. You can specify a list of unwanted words (such as swear words or secret words) and the program will replace them with alternative words and create a safe-to-read text. The words can be specified in a multi-line text field in the options by entering one word per line.',
|
||||
keywords: ['text', 'censor', 'words', 'characters'],
|
||||
userTypes: ['General Users', 'Students'],
|
||||
component: lazy(() => import('./index'))
|
||||
});
|
||||
|
@@ -10,5 +10,6 @@ export const tool = defineTool('string', {
|
||||
'A simple tool to encode or decode text using the ROT13 cipher, which replaces each letter with the letter 13 positions after it in the alphabet.',
|
||||
shortDescription: 'Encode or decode text using ROT13 cipher.',
|
||||
keywords: ['rot13'],
|
||||
userTypes: ['Developers', 'CyberSec', 'Students'],
|
||||
component: lazy(() => import('./index'))
|
||||
});
|
||||
|
@@ -11,5 +11,6 @@ export const tool = defineTool('string', {
|
||||
longDescription:
|
||||
'This tool provides various statistics about the text you input, including the number of lines, words, and characters. You can also choose to include empty lines in the count. it can count words and characters based on custom delimiters, allowing for flexible text analysis. Additionally, it can provide frequency statistics for words and characters, helping you understand the distribution of terms in your text.',
|
||||
keywords: ['text', 'statistics', 'count', 'lines', 'words', 'characters'],
|
||||
userTypes: ['General Users', 'Students', 'Developers'],
|
||||
component: lazy(() => import('./index'))
|
||||
});
|
||||
|
Reference in New Issue
Block a user