Base64 Decoder
Decodes Base64 strings. Highlight the string and right-click.
Hvad er Base64 Decoder?
Base64 Decoder er en Chrome-udvidelse udviklet af dragoonj, og dens hovedfunktion er "Decodes Base64 strings. Highlight the string and right-click.".
Download Base64 Decoder-udvidelses-CRX-fil
Download Base64 Decoder-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | ababhhiegjhaohnipcgjfgfeljakfhhc |
| Officiel URL | https://chromewebstore.google.com/detail/base64-decoder/ababhhiegjhaohnipcgjfgfeljakfhhc |
| Beskrivelse | Decodes Base64 strings. Highlight the string and right-click. |
| Filstørrelse | 14.15 KB |
| Antal Installationer | 2,413 |
| Nuværende Version | 0.2 |
| Senest Opdateret | 2013-03-13 |
| Udgivelsesdato | 2013-03-13 |
| Bedømmelse | 4.08/5 Samlet 12 Bedømmelser |
| Udvikler | dragoonj |
| [email protected] | |
| Betalingsmetode | free |
| Understøttede Sprog | 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
} | |