Tweaks for VSCO
View full-size images, profile image, and videos on vsco.co website, and download them with a single click. Includes custom gallery…
Tweaks for VSCOคืออะไร?
Tweaks for VSCO เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://inzk.dev และคุณลักษณะหลักของมันคือ "View full-size images, profile image, and videos on vsco.co website, and download them with a single click. Includes custom gallery…"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tweaks for VSCO
ดาวน์โหลดไฟล์ส่วนขยาย Tweaks for VSCO ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
View full-size images, profile image, and videos on vsco.co website, and download them with a single click. Includes custom gallery viewer that enables you to change theme, thumbnail size, and more.
------------------------------------------------
Controls
------------------------------------------------
Open full-size media
- Left/Middle/Right Mouse Button
Save media
- Middle/Right Mouse Button
Go to next or previous media item
- Mouse Wheel
- Arrow Left, Arrow Right
Zoom
- Ctrl + Mouse Wheel
- Right Mouse Button + Mouse Wheel
------------------------------------------------
Permissions
------------------------------------------------
Storage - for storing extension settings
Downloads - for downloading media files
Site Access
- vsco.co
------------------------------------------------
Privacy Policy
------------------------------------------------
This extension does not collect any personally identifiable information from users, and it does not send any user data to a remote server. Only data it collects are extension settings, and this is stored locally on your PC.
This is an independent project and has no relationship to VSCO®. ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | ljbopeedkjbnlapghcfjgigmknofmbkp |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/tweaks-for-vsco/ljbopeedkjbnlapghcfjgigmknofmbkp |
| คำอธิบาย | View full-size images, profile image, and videos on vsco.co website, and download them with a single click. Includes custom gallery… |
| ขนาดไฟล์ | 489 KB |
| จำนวนการติดตั้ง | 1,075 |
| เวอร์ชันปัจจุบัน | 3.4.5 |
| อัปเดตครั้งล่าสุด | 2023-12-20 |
| วันที่เผยแพร่ | 2020-06-20 |
| คะแนน | 4.60/5 รวมทั้งหมด 5 คะแนน |
| ผู้พัฒนา | https://inzk.dev |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| ภาษาที่รองรับ | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Tweaks for VSCO",
"manifest_version": 3,
"minimum_chrome_version": "88",
"action": {
"default_icon": {
"16": "icon-16.png",
"19": "icon-19.png",
"24": "icon-24.png",
"32": "icon-32.png",
"38": "icon-38.png",
"48": "icon-48.png",
"96": "icon-96.png"
},
"default_popup": "popup.html",
"default_title": "Tweaks for VSCO"
},
"background": {
"service_worker": "background.bundle.js"
},
"commands": {
"_execute_action": {
"description": "Open Popup"
}
},
"icons": {
"16": "icon-16.png",
"19": "icon-19.png",
"24": "icon-24.png",
"32": "icon-32.png",
"38": "icon-38.png",
"48": "icon-48.png",
"96": "icon-96.png"
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"permissions": [
"storage",
"downloads"
],
"version": "3.4.5",
"content_scripts": [
{
"js": [
"content.custom-styles.bundle.js"
],
"matches": [
"https:\/\/vsco.co\/*"
],
"run_at": "document_start"
},
{
"js": [
"content.vsco.bundle.js"
],
"matches": [
"https:\/\/vsco.co\/*"
],
"run_at": "document_end"
}
]
} | |