Doculife
Extend Doculife functionality to the browser
Doculifeคืออะไร?
Doculife เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Doculife และคุณลักษณะหลักของมันคือ "Extend Doculife functionality to the browser"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Doculife
ดาวน์โหลดไฟล์ส่วนขยาย Doculife ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
The Doculife browser extension helps you bookmark links, save videos & photos within your Doculife account.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Doculife |
ID | kncpecieidnifieilafkejgkkbfohldf |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/doculife/kncpecieidnifieilafkejgkkbfohldf |
คำอธิบาย | Extend Doculife functionality to the browser |
ขนาดไฟล์ | 81.92 KB |
จำนวนการติดตั้ง | 72 |
เวอร์ชันปัจจุบัน | 1.5 |
อัปเดตครั้งล่าสุด | 2020-11-11 |
วันที่เผยแพร่ | 2020-03-25 |
คะแนน | 5.00/5 รวมทั้งหมด 13 คะแนน |
ผู้พัฒนา | Doculife |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://www.doculife.com/ |
URL หน้านโยบายความเป็นส่วนตัว | https://www.doculife.com/privacy-policy |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Doculife", "version": "1.5", "author": "Doculife", "description": "Extend Doculife functionality to the browser", "-ms-preload": { "backgroundScript": "backgroundScriptsAPIBridge.js", "contentScript": "contentScriptsAPIBridge.js" }, "icons": { "16": "icon-16.png", "32": "icon-32.png", "48": "icon-48.png", "64": "icon-64.png", "128": "icon-128.png" }, "browser_action": { "default_icon": { "16": "icon-16.png", "32": "icon-32.png", "48": "icon-48.png", "64": "icon-64.png", "128": "icon-128.png" }, "default_popup": "popup.html", "default_title": "Doculife" }, "permissions": [ "activeTab", "contextMenus", "storage", "notifications", "https:\/\/*.mydoculife.com\/*", "https:\/\/mydoculife.com\/*" ], "background": { "scripts": [ "browser-polyfill.js", "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/mydoculife.com\/*", "https:\/\/dev.mydoculife.com\/*" ], "js": [ "contentScriptsAPIBridge.js", "browser-polyfill.js", "content.js" ], "all_frames": true } ] } |