Binary Converter
Automatically append an ascii translation to any binary code.
Cos'è Binary Converter?
Binary Converter è un'estensione di Chrome sviluppata da rustyskates, e la sua funzione principale è "Automatically append an ascii translation to any binary code.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Binary Converter
Scarica i file di estensione Binary Converter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Informazioni di Base sull'Estensione
Nome | |
ID | bjacdlmipkheclhdbkemifnndonapped |
URL Ufficiale | https://chrome.google.com/webstore/detail/binary-converter/bjacdlmipkheclhdbkemifnndonapped |
Descrizione | Automatically append an ascii translation to any binary code. |
Dimensione del File | 38.93 KB |
Conteggio Installazioni | 74 |
Versione Corrente | 1.1 |
Ultimo Aggiornamento | 2016-06-05 |
Data di Pubblicazione | 2016-06-05 |
Valutazione | 3.40/5 Totale 5 Valutazioni |
Sviluppatore | rustyskates |
Tipo di Pagamento | free |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Binary Converter", "description": "Automatically append an ascii translation to any binary code.", "version": "1.1", "permissions": [ "tabs", "http:\/\/*\/*" ], "background": "background.html", "content_scripts": [ { "all_frames": true, "matches": [ "*:\/\/*\/*" ], "js": [ "jquery-1.9.1.min.js", "content.js" ], "run_at": "document_end" } ] } |