Add to photos
Add context menu to save photos to google photos
Add to photosคืออะไร?
Add to photos เป็นส่วนขยายของ Chrome ที่พัฒนาโดย extensions guru และคุณลักษณะหลักของมันคือ "Add context menu to save photos to google photos"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Add to photos
ดาวน์โหลดไฟล์ส่วนขยาย Add to photos ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Add "Add to google photos" context menu to quickly add images to google photos
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Add to photos |
ID | amcoamjdplaalnjkcbildpnjpfjeiddb |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/add-to-photos/amcoamjdplaalnjkcbildpnjpfjeiddb |
คำอธิบาย | Add context menu to save photos to google photos |
ขนาดไฟล์ | 11.72 KB |
จำนวนการติดตั้ง | 1,663 |
เวอร์ชันปัจจุบัน | 1.1.1 |
อัปเดตครั้งล่าสุด | 2021-01-08 |
วันที่เผยแพร่ | 2020-12-24 |
คะแนน | 3.67/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | extensions guru |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Add to photos", "version": "1.1.1", "description": "Add context menu to save photos to google photos", "manifest_version": 2, "icons": { "128": "icon_128.png", "64": "icon_64.png" }, "browser_action": { "default_title": "AddPhotos, speedy and safety" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "content.css" ], "js": [ "contentScript.js" ] } ], "oauth2": { "client_id": "492564831811-v22b74kgolbf5k0s0i401e3qorg34h2g.apps.googleusercontent.com", "scopes": [ "https:\/\/www.googleapis.com\/auth\/photoslibrary.appendonly" ] }, "permissions": [ "storage", "identity", "contextMenus" ] } |