Base64 encode/decode selected text
A base64 encoder/decoder extensions for the chrome
Cos'è Base64 encode/decode selected text?
Base64 encode/decode selected text è un'estensione di Chrome sviluppata da Jase, e la sua funzione principale è "A base64 encoder/decoder extensions for the chrome".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Base64 encode/decode selected text
Scarica i file di estensione Base64 encode/decode selected text 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
A base64 encoder/decoder extensions for the chrome
This is an open source software.
https://github.com/17/chrome_base64 Informazioni di Base sull'Estensione
| Nome | |
| ID | gkdcpimagggbnjdkjhbnilfeiidhdhcl |
| URL Ufficiale | https://chromewebstore.google.com/detail/base64-encodedecode-selec/gkdcpimagggbnjdkjhbnilfeiidhdhcl |
| Descrizione | A base64 encoder/decoder extensions for the chrome |
| Dimensione del File | 10.14 KB |
| Conteggio Installazioni | 11,600 |
| Versione Corrente | 0.2.1 |
| Ultimo Aggiornamento | 2019-01-28 |
| Data di Pubblicazione | 2019-01-25 |
| Valutazione | 2.88/5 Totale 8 Valutazioni |
| Sviluppatore | Jase |
| Tipo di Pagamento | free |
| Lingue Supportate | en,zh-CN,zh-TW |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Base64 encode\/decode selected text",
"version": "0.2.1",
"description": "A base64 encoder\/decoder extensions for the chrome",
"default_locale": "en",
"permissions": [
"contextMenus",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"background": {
"scripts": [
".\/background.js"
],
"persistent": true
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
".\/content_scripts.js"
]
}
],
"icons": {
"16": ".\/icons\/16.png",
"48": ".\/icons\/48.png",
"128": ".\/icons\/128.png"
}
} | |