Base64 Decoder
Decodes Base64 strings. Highlight the string and right-click.
Vad är Base64 Decoder?
Base64 Decoder är en Chrome-tillägg utvecklad av dragoonj, och dess huvudfunktion är "Decodes Base64 strings. Highlight the string and right-click.".
Ladda ner Base64 Decoder-förlängningens CRX-fil
Ladda ner Base64 Decoder-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
| Namn | |
| ID | ababhhiegjhaohnipcgjfgfeljakfhhc |
| Officiell webbadress | https://chromewebstore.google.com/detail/base64-decoder/ababhhiegjhaohnipcgjfgfeljakfhhc |
| Beskrivning | Decodes Base64 strings. Highlight the string and right-click. |
| Filstorlek | 14.15 KB |
| Antal Installationer | 2,413 |
| Aktuell Version | 0.2 |
| Senast Uppdaterad | 2013-03-13 |
| Publiceringsdatum | 2013-03-13 |
| Betyg | 4.08/5 Totalt 12 Betyg |
| Utvecklare | dragoonj |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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
} | |