Google Drive Images Redirector
When activated shows a direct link to a Google Drive image instead of opening it in the Google Drive Viewer.
Google Drive Images Redirectorคืออะไร?
Google Drive Images Redirector เป็นส่วนขยายของ Chrome ที่พัฒนาโดย dvhb และคุณลักษณะหลักของมันคือ "When activated shows a direct link to a Google Drive image instead of opening it in the Google Drive Viewer."
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Google Drive Images Redirector
ดาวน์โหลดไฟล์ส่วนขยาย Google Drive Images Redirector ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
When activated shows a direct link to a Google Drive image instead of opening it in the Google Drive Viewer.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | fndebjggeamljkklolciingbiankaobg |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/google-drive-images-redir/fndebjggeamljkklolciingbiankaobg |
คำอธิบาย | When activated shows a direct link to a Google Drive image instead of opening it in the Google Drive Viewer. |
ขนาดไฟล์ | 5.65 KB |
จำนวนการติดตั้ง | 57 |
เวอร์ชันปัจจุบัน | 1.0.1 |
อัปเดตครั้งล่าสุด | 2015-07-29 |
วันที่เผยแพร่ | 2015-07-29 |
ผู้พัฒนา | dvhb |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://dvhb.ru |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Google Drive Images Redirector", "description": "", "version": "1.0.1", "browser_action": { "default_icon": ".\/icon-32.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "permissions": [ "background" ], "content_scripts": [ { "matches": [ "*:\/\/drive.google.com\/*" ], "js": [ "script.js" ] } ] } |