Skip to content

fedecalendino/alfred-string-toolkit

Repository files navigation

ALFRED-STRING-TOOLKIT

Alfred Workflow to run different sets of string manipulation tools 🔤️

FUNCTIONS

*️⃣ str base

Apply a base to a string.

parameters

clipboard

Also decode a base when possible!

decode

🔠 str case

Change the case of a string.

parameters

clipboard

#️⃣ str hash

Apply a hash to a string.

parameters

clipboard

ℹ️ str info

Get information about a string.

parameters

clipboard

🔀 str lipsum

Generate a random amount of lorem ipsum paragraphs, sentences or words.

default

parameters

🔣️ str utils

Execute different string manipulation utilities on a string

parameters

clipboard

Decode JWT

decode jwt

input eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c

result

{
  "header": {
    "alg": "HS256",
    "typ": "JWT"
  },
  "payload": {
    "sub": "1234567890",
    "name": "John Doe",
    "iat": 1516239022
  },
  "signature": "SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c"
}