Photos Direct Link
Allow you to copy a direct link, with extension, from Google Photos.
Photos Direct Link란 무엇입니까?
Photos Direct Link은(는) ddo에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allow you to copy a direct link, with extension, from Google Photos."입니다.
확장 프로그램 스크린샷
Photos Direct Link 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
*Extension changed the name/icon to accomplish Google trademark rules. Allows you to copy a direct link, with extension (.jpg), from Google Album Archive (https://get.google.com/albumarchive) and Google Photos (https://photos.google.com). Google Album Archive and Google Photos doesn't allow you to get an image direct link (with image extension [like png or jpg]). This Chrome extension is very helpful to post images in forums or blogs, where the file extension is mandatory. Is possible to configure the desired image size too. IMPORTANT: Apparently, the generated URL (from Google Photos) stops working after some time. In my tests, some URLs stopped working after one day and others still working. WORKAROUND: Added support to Google Album Archive (http://get.google.com/algumarchive). Usage instructions: Open an image and just click (left click) over the image. A message is shown at the page bottom. This extension is open source and can be found in https://github.com/ddo02/GooglePhotosDirectLink
확장 프로그램 기본 정보
이름 | Photos Direct Link |
ID | dgnaaplaoheafdckphgmpiaodckbcafg |
공식 URL | https://chromewebstore.google.com/detail/photos-direct-link/dgnaaplaoheafdckphgmpiaodckbcafg |
설명 | Allow you to copy a direct link, with extension, from Google Photos. |
파일 크기 | 47.38 KB |
설치 횟수 | 20,000 |
현재 버전 | 2.0 |
최근 업데이트 | 2020-08-31 |
출시 날짜 | 2017-10-10 |
평점 | 3.98/5 총 66 개의 평점 |
개발자 | ddo |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/ddo02/GooglePhotosDirectLink |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Photos Direct Link", "version": "2.0", "manifest_version": 2, "description": "Allow you to copy a direct link, with extension, from Google Photos.", "content_scripts": [ { "matches": [ "https:\/\/photos.google.com\/*", "https:\/\/get.google.com\/*" ], "css": [ "direct_styles.css" ], "js": [ "jquery-1.11.1.min.js", "direct.js" ], "run_at": "document_end" } ], "options_page": "options.html", "permissions": [ "storage" ], "page_action": { "default_icon": "img\/GPDL-logo-19.png" }, "icons": { "19": "img\/GPDL-logo-19.png", "48": "img\/GPDL-logo-48.png", "128": "img\/GPDL-logo-128.png" } } |