Base64 Decoder
Decodes Base64 strings. Highlight the string and right-click.
Τι είναι το Base64 Decoder;
Το Base64 Decoder είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον dragoonj, και η κύρια λειτουργία του είναι "Decodes Base64 strings. Highlight the string and right-click.".
Λήψη αρχείου CRX της επέκτασης Base64 Decoder
Λήψη αρχείων επέκτασης Base64 Decoder σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Base64 Decoder |
ID | ababhhiegjhaohnipcgjfgfeljakfhhc |
Επίσημο URL | https://chromewebstore.google.com/detail/base64-decoder/ababhhiegjhaohnipcgjfgfeljakfhhc |
Περιγραφή | Decodes Base64 strings. Highlight the string and right-click. |
Μέγεθος Αρχείου | 14.15 KB |
Αριθμός Εγκαταστάσεων | 2,413 |
Τρέχουσα Έκδοση | 0.2 |
Τελευταία Ενημέρωση | 2013-03-13 |
Ημερομηνία Δημοσίευσης | 2013-03-13 |
Αξιολόγηση | 4.08/5 Συνολικά 12 Αξιολογήσεις |
Προγραμματιστής | dragoonj |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | 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 } |