Binary Converter
Automatically append an ascii translation to any binary code.
Co to jest Binary Converter?
Binary Converter to rozszerzenie Chrome opracowane przez rustyskates, a jego główną funkcją jest „Automatically append an ascii translation to any binary code.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Binary Converter
Pobierz pliki rozszerzeń Binary Converter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | bjacdlmipkheclhdbkemifnndonapped |
Oficjalny URL | https://chrome.google.com/webstore/detail/binary-converter/bjacdlmipkheclhdbkemifnndonapped |
Opis | Automatically append an ascii translation to any binary code. |
Rozmiar pliku | 38.93 KB |
Liczba instalacji | 74 |
Aktualna Wersja | 1.1 |
Ostatnia Aktualizacja | 2016-06-05 |
Data Publikacji | 2016-06-05 |
Ocena | 3.40/5 Łącznie 5 Oceny |
Deweloper | rustyskates |
Typ Płatności | free |
Obsługiwane Języki | 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" } ] } |