This repository has been archived by the owner on Sep 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Context menu instructions
Dino Angelov edited this page May 13, 2016
·
1 revision
IF you wish to add Hasher
commands to the context menu, you may add the following to the end of your User/Context.sublime-menu
file.
[
{ "caption": "-" },
{
"caption": "Hasher",
"children":
[
{
"caption": "MD5",
"command": "md5",
"args": {}
},
{
"caption": "SHA1",
"command": "sha1",
"args": {}
},
{
"caption": "SHA224",
"command": "sha224",
"args": {}
},
{
"caption": "SHA256",
"command": "sha256",
"args": {}
},
{
"caption": "SHA384",
"command": "sha384",
"args": {}
},
{
"caption": "SHA512",
"command": "sha512",
"args": {}
},
{
"caption": "NTLM",
"command": "ntlm",
"args": {}
},
{
"caption": "Base64 Encode",
"command": "base64_encode",
"args": {}
},
{
"caption": "Base64 Decode",
"command": "base64_decode",
"args": {}
},
{
"caption": "URI Component Encode",
"command": "uri_component_encode",
"args": {}
},
{
"caption": "URI Component Decode",
"command": "uri_component_decode",
"args": {}
},
{
"caption": "Entity Encode",
"command": "entity_encode",
"args": {}
},
{
"caption": "Entity Decode",
"command": "entity_decode",
"args": {}
},
{
"caption": "Unicode Escape",
"command": "unicode_escape",
"args": {}
},
{
"caption": "Unicode Unescape",
"command": "unicode_unescape",
"args": {}
},
{
"caption": "Insert UNIX Timestamp",
"command": "current_unix_timestamp",
"args": {}
}
]
}
]