Base64 encode/decode selected text
A base64 encoder/decoder extensions for the chrome
Base64 encode/decode selected textคืออะไร?
Base64 encode/decode selected text เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jase และคุณลักษณะหลักของมันคือ "A base64 encoder/decoder extensions for the chrome"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Base64 encode/decode selected text
ดาวน์โหลดไฟล์ส่วนขยาย Base64 encode/decode selected text ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
A base64 encoder/decoder extensions for the chrome
This is an open source software.
https://github.com/17/chrome_base64 ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | gkdcpimagggbnjdkjhbnilfeiidhdhcl |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/base64-encodedecode-selec/gkdcpimagggbnjdkjhbnilfeiidhdhcl |
| คำอธิบาย | A base64 encoder/decoder extensions for the chrome |
| ขนาดไฟล์ | 10.14 KB |
| จำนวนการติดตั้ง | 11,600 |
| เวอร์ชันปัจจุบัน | 0.2.1 |
| อัปเดตครั้งล่าสุด | 2019-01-28 |
| วันที่เผยแพร่ | 2019-01-25 |
| คะแนน | 2.88/5 รวมทั้งหมด 8 คะแนน |
| ผู้พัฒนา | Jase |
| ประเภทการชำระเงิน | free |
| ภาษาที่รองรับ | 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"
}
} | |