Save Some Shorts: Save & Revisit YT Shorts
Save and revisit your YouTube Shorts with ease.
Save Some Shorts: Save & Revisit YT Shorts란 무엇입니까?
Save Some Shorts: Save & Revisit YT Shorts은(는) dian_chrome_dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Save and revisit your YouTube Shorts with ease."입니다.
확장 프로그램 스크린샷
Save Some Shorts: Save & Revisit YT Shorts 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
📖 I built this to simplify how I store Youtube Shorts. Not scrolling past the hundreds of bookmarks and folders that I don't check, and definitely not in a Google Doc with a list of links… "Just 1 click to save, and 1 click to view" Shorts are saved across your personal, school, and work laptops.* Hope this can also help the select few with the same problem 😃. If you have any suggestions or feedbacks, feel free to reach out via ➡️ Google Form: forms.gle/GLPSQF8FNJBLSEgP7 ➡️ Twitter: twitter.com/dian_tweets 🐌 Current Limitations: Only 512 items (shorts) are allowed to be saved in chrome's sync storage Stylized for dark mode users Sometimes there are 2 buttons displayed, your shorts are still saved when clicking on either. * Devices must use the same Google account.
확장 프로그램 기본 정보
이름 | Save Some Shorts: Save & Revisit YT Shorts |
ID | bnccmceigdbnheebcabkgnnalbccoblo |
공식 URL | https://chromewebstore.google.com/detail/save-some-shorts-save-rev/bnccmceigdbnheebcabkgnnalbccoblo |
설명 | Save and revisit your YouTube Shorts with ease. |
파일 크기 | 18.79 KB |
설치 횟수 | 28 |
현재 버전 | 1.0.0 |
최근 업데이트 | 2023-01-03 |
출시 날짜 | 2023-01-03 |
평점 | 4.50/5 총 2 개의 평점 |
개발자 | dian_chrome_dev |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://forms.gle/GLPSQF8FNJBLSEgP7 |
도움말 페이지 URL | https://forms.gle/GLPSQF8FNJBLSEgP7 |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Save Some Shorts: Save & Revisit YT Shorts", "version": "1.0.0", "description": "Save and revisit your YouTube Shorts with ease.", "permissions": [ "storage", "webNavigation", "activeTab" ], "background": { "service_worker": "scripts\/background.js" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" } }, "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "content_scripts": [ { "js": [ "scripts\/content.js" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ] } |