Picsee - collect and organize image
This extension makes easy to collect images or videos and save full-page screenshots from website
Picsee - collect and organize image란 무엇입니까?
Picsee - collect and organize image은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension makes easy to collect images or videos and save full-page screenshots from website"입니다.
확장 프로그램 스크린샷
Picsee - collect and organize image 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Save web page images as you want to Picsee. #1. Drag & Drop Drag & drop the image you see on web page to collect and save to Picsee App. #2. Shortcut key Move mouse hover on the image you see on web page pressing "option + 2" to collect and save to Picsee App. #3. Batch-saving After filter with image dimension, save all images oon the web page, avoid to collect and save one by one. #4. Full-page screenshot Auto scroll to screenshot entire web page as a long image to collect and save to Picsee App. Browser Extension must used with Picsee App, please install it on your macOS firstly. --------------------------------------------------------------------------------- It supports to collect and save images on most web page, including Pinterest, Behance, Dribble, Artstation, 500px etc. We will continue to optimize collecting and saving images, you can email to tell us your idea, [email protected] --------------------------------------------------------------------------------- Your privacy is very important to us, this extension don't collect any personal information, for more detailed privacy terms, please check: https://picsee.chitaner.com/blog/privacy.html
확장 프로그램 기본 정보
이름 | Picsee - collect and organize image |
ID | hpjohcjliapkpjgbdfeggfldnnpaabjk |
공식 URL | https://chromewebstore.google.com/detail/picsee-collect-and-organi/hpjohcjliapkpjgbdfeggfldnnpaabjk |
설명 | This extension makes easy to collect images or videos and save full-page screenshots from website |
파일 크기 | 750 KB |
설치 횟수 | 1,568 |
현재 버전 | 1.0.4 |
최근 업데이트 | 2022-03-11 |
출시 날짜 | 2022-02-24 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | Unknown |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://picsee.chitaner.com |
도움말 페이지 URL | https://picsee.chitaner.com |
지원되는 언어 | en,zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "1.0.4", "name": "__MSG_extAppName__", "description": "__MSG_extAppDescription__", "default_locale": "en", "permissions": [ "activeTab", "contextMenus", "storage", "tabs" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "icons": { "16": "public\/assets\/icon16.png", "48": "public\/assets\/icon48.png", "128": "public\/assets\/icon128.png" }, "action": { "default_icon": "public\/assets\/icon19.png", "default_popup": "popup\/index.html" }, "background": { "service_worker": "background\/index.js" }, "options_ui": { "page": "options\/index.html", "open_in_tab": true }, "commands": [], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" }, "content_scripts": [ { "match_about_blank": true, "js": [ "contentScripts\/index.js" ], "css": [ "contentScripts\/index.css" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "all_frames": false, "run_at": "document_end" } ], "web_accessible_resources": [ { "resources": [ "contentScripts\/*", "public\/assets\/*", "popup\/*", "options\/*" ], "matches": [], "extension_ids": [] } ] } |