Base64 Decoder
Decodes Base64 strings. Highlight the string and right-click.
Wat is Base64 Decoder?
Base64 Decoder is een Chrome-extensie ontwikkeld door dragoonj, en de belangrijkste functie is "Decodes Base64 strings. Highlight the string and right-click.".
Download het CRX-bestand van de extensie Base64 Decoder
Download Base64 Decoder-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | ababhhiegjhaohnipcgjfgfeljakfhhc |
| Officiële URL | https://chromewebstore.google.com/detail/base64-decoder/ababhhiegjhaohnipcgjfgfeljakfhhc |
| Beschrijving | Decodes Base64 strings. Highlight the string and right-click. |
| Bestandsgrootte | 14.15 KB |
| Aantal Installaties | 2,413 |
| Huidige Versie | 0.2 |
| Laatst Bijgewerkt | 2013-03-13 |
| Publicatiedatum | 2013-03-13 |
| Beoordeling | 4.08/5 Totaal 12 Beoordelingen |
| Ontwikkelaar | dragoonj |
| [email protected] | |
| Betalingswijze | free |
| Ondersteunde Talen | 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
} | |