Module Details
1. Custom Shortcut Search
-
searchTool: Allows performing searches across
various search engines using shortcuts.
- Input: String in the format SHORTCUT query (e.g., g JavaScript).
- Output: URL for the search on the selected engine.
Supported Search Engines
Name | Shortcut | Base URL |
---|---|---|
g | https://www.google.com/search?q= | |
Bing | b | https://www.bing.com/search?q= |
Yahoo | y | https://search.yahoo.com/search?p= |
DuckDuckGo | d | https://duckduckgo.com/?q= |
Baidu | bd | https://www.baidu.com/s?wd= |
Yandex | ya | https://yandex.com/search/?text= |
Brave Search | br | https://search.brave.com/search?q= |
WolframAlpha | wa | https://www.wolframalpha.com/input?i= |
YouTube | yt | https://www.youtube.com/results?search_query= |
tw | https://twitter.com/search?q= | |
ig | https://www.instagram.com/explore/search?q= | |
fb | https://www.facebook.com/search/top?q= | |
TikTok | tt | https://www.tiktok.com/search?q= |
in | https://www.linkedin.com/search/results/all/?keywords= | |
rd | https://www.reddit.com/search?q= | |
GitHub | gh | https://github.com/search?q= |
Stack Overflow | so | https://stackoverflow.com/search?q= |
Medium | md | https://medium.com/search?q= |
Default Search
If no shortcut is used, the search will be performed on Google.
2. Color Conversion
Available Functions
-
hexToRgbTool: Converts a HEX color to RGB.
- Input: String in the format
#RRGGBB to rgb
. - Output: String in the format rgb(R, G, B).
- Input: String in the format
-
rgbToHexTool: Converts an RGB color to HEX.
- Input: String in the format
R, G, B to hex
. - Output: String in the format #RRGGBB.
- Input: String in the format
-
randomRGBTool: Generates a random RGB color.
- Input: String
random rgb
. - Output: String in the format rgb(R, G, B).
- Input: String
-
randomHEXTool: Generates a random HEX color.
- Input: String
random hex
. - Output: String in the format #RRGGBB.
- Input: String
Dependencies
- Helper functions for conversion: hexToRgb, rgbToHex, and randomNum.
3. Unit Conversion
Available Functions
-
conversionWeightTool: Converts between weight and
length units.
-
Input: String in the format
VALUE SOURCE_UNIT to DESTINATION_UNIT
(e.g., 10 kg to lb). - Output: Converted value and destination unit.
-
Input: String in the format
Supported Conversions
-
Weight:
- Kilograms (kg) to Pounds (lb) and vice versa.
- Grams (g) to Ounces (oz) and vice versa.
- Tons (t) to Kilograms (kg) or Pounds (lb) and vice versa.
-
Length:
- Meters (m) to Feet (ft) and vice versa.
- Centimeters (cm) to Inches (in) and vice versa.
- Kilometers (km) to Miles (mi) and vice versa.
Dependencies
- conversionRates object: Contains conversion factors for all supported units.
4. Favorite Management
Available Functions
-
addFavoriteUrlTool: Adds a URL to the favorites
list.
-
Input: String fav add URL to start the process and
fav add URL y
to confirm. - Output: URL added to the favorites list.
-
Input: String fav add URL to start the process and
-
deleteAllFavoriteUrlTool: Removes all favorites.
-
Input: String fav delete all to start the process
and fav delete all y to confirm
. - Output: All favorites are deleted.
-
Input: String fav delete all to start the process
-
deleteFavoriteUrlTool: Removes a favorite by index.
-
Input: String fav delete INDEX to start the process and
fav delete INDEX y
to confirm. - Output: Favorite removed based on the provided index.
-
Input: String fav delete INDEX to start the process and
-
seeFavoriteUrlTool: Lists all stored favorites.
- Input: String
fav
. - Output: List of favorite URLs with their respective indices.
- Input: String
Dependencies
- Uses localStorage to persist data between sessions.
- Helper function saveFavorites to manage updates to the list.
5. Show Available Wallpapers
-
changeWPTool: Displays the list of available
wallpapers and allows changing.
- Input: String
wp change
. - Output: List of wallpapers with the option to change by pressing Enter.
- Wallpapers sourced from https://pixabay.com/
- Input: String
6. Calculator
-
calculatorTool: Performs simple mathematical
calculations.
-
Input: String containing a mathematical expression followed by
=
(e.g., 5+5=). - Output: Calculation result and option to copy the value.
-
Input: String containing a mathematical expression followed by
7. Random Password Generation
-
randomPassTool: Generates a random password with
the specified number of characters.
-
Input: String
new pass N
(e.g., new pass 10). - Output: Generated password and option to copy the value.
-
Input: String
License and Contribution
- Project Documentation: https://github.com/CarlosEduts/zen-homepage