Redium
Automatically unblock medium articles through proxies.
Rediumคืออะไร?
Redium เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://anissan.com และคุณลักษณะหลักของมันคือ "Automatically unblock medium articles through proxies."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Redium
ดาวน์โหลดไฟล์ส่วนขยาย Redium ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
However, it auto-redirects only if you open the article in a new tab, or manually click the extension icon / Alt + R. It currently supports proxies like: 1️⃣ Google Web Cache 2️⃣ 12ft.io 3️⃣ Scribe 4️⃣ LibMedium ℹ️ Google Web Cache and 12ft can unlock articles on websites other than medium.com. But they may or may not work 100% of the time. This extension doesn't collect any data. Checkout the "Website" link for source code and changelog on GitHub.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Redium |
ID | aapiedkipcbeplicbbicchmdmpinhjdl |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/redium/aapiedkipcbeplicbbicchmdmpinhjdl |
คำอธิบาย | Automatically unblock medium articles through proxies. |
ขนาดไฟล์ | 11.55 KB |
จำนวนการติดตั้ง | 4,388 |
เวอร์ชันปัจจุบัน | 2.0 |
อัปเดตครั้งล่าสุด | 2023-08-24 |
วันที่เผยแพร่ | 2023-05-11 |
คะแนน | 5.00/5 รวมทั้งหมด 37 คะแนน |
ผู้พัฒนา | https://anissan.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/ni554n/redium |
URL หน้าช่วยเหลือ | https://github.com/ni554n/redium/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Redium", "version": "2.0", "description": "Automatically unblock medium articles through proxies.", "icons": { "16": "assets\/icon16.png", "32": "assets\/icon32.png", "48": "assets\/icon48.png", "128": "assets\/icon128.png" }, "action": [], "commands": { "_execute_action": { "suggested_key": { "default": "Alt+R" } } }, "host_permissions": [ "*:\/\/*.medium.com\/*" ], "permissions": [ "activeTab", "contentSettings", "contextMenus", "management", "storage" ], "background": { "service_worker": "dist\/worker.js" }, "content_scripts": [ { "matches": [ "https:\/\/webcache.googleusercontent.com\/*" ], "js": [ "dist\/webcache.js" ] } ] } |