Base64 Decoder
Decodes Base64 strings. Highlight the string and right-click.
Co je Base64 Decoder?
Base64 Decoder je rozšíření Chrome vyvinuté dragoonj, a jeho hlavní funkcí je „Decodes Base64 strings. Highlight the string and right-click.“.
Stáhnout soubor CRX rozšíření Base64 Decoder
Stáhněte si soubory rozšíření Base64 Decoder ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
This is a tiny extension that does just one thing: Decodes Base64 strings.
To use, simply highlight the string you wish to decode, right-click it, and select 'Base64 Decode'.
Note: depending on the structure of the page, decoding the string may cause some funny formatting issues. Refresh the page to restore structure/formatting. Základní Informace o Rozšíření
| Název | |
| ID | ababhhiegjhaohnipcgjfgfeljakfhhc |
| Oficiální URL | https://chromewebstore.google.com/detail/base64-decoder/ababhhiegjhaohnipcgjfgfeljakfhhc |
| Popis | Decodes Base64 strings. Highlight the string and right-click. |
| Velikost souboru | 14.15 KB |
| Počet instalací | 2,413 |
| Aktuální Verze | 0.2 |
| Poslední Aktualizace | 2013-03-13 |
| Datum Vydání | 2013-03-13 |
| Hodnocení | 4.08/5 Celkem 12 Hodnocení |
| Vývojář | dragoonj |
| [email protected] | |
| Typ Platby | free |
| Podporované Jazyky | en |
| manifest.json | |
{
"update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Base64 Decoder",
"description": "Decodes Base64 strings. Highlight the string and right-click.",
"version": "0.2",
"permissions": [
"contextMenus"
],
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"run_at": "document_end",
"js": [
"zepto.js",
"content.js"
]
}
],
"manifest_version": 2
} | |