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文件
下載Save Some Shorts: Save & Revisit YT Shorts擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
📖
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. 擴展基本資訊
| 名稱 | |
| ID | bnccmceigdbnheebcabkgnnalbccoblo |
| 官方網址 | 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\/*"
]
}
]
} | |