Add to photos
Add context menu to save photos to google photos
Add to photos란 무엇입니까?
Add to photos은(는) extensions guru에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add context menu to save photos to google photos"입니다.
확장 프로그램 스크린샷
Add to photos 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } |