Base64 Decoder
Decodes Base64 strings. Highlight the string and right-click.
Base64 Decoder क्या है?
Base64 Decoder dragoonj द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Decodes Base64 strings. Highlight the string and right-click."।
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Base64 Decoder एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 } |