STRAVINI
Get back control over your Strava feed. STRAVINI offers a light and clean Strava experience.
STRAVINIคืออะไร?
STRAVINI เป็นส่วนขยายของ Chrome ที่พัฒนาโดย stravini.extension และคุณลักษณะหลักของมันคือ "Get back control over your Strava feed. STRAVINI offers a light and clean Strava experience."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย STRAVINI
ดาวน์โหลดไฟล์ส่วนขยาย STRAVINI ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Features: - Clean interface: multiple activities fit one screen - Light and Fast - Chronological sorting or by Strava algorithm - Filter out promotional messages, posts, challenges, club notifications, Zwift rides, short rides from the feed - The activity description, if present, is visible directly in the feed - Sharper font The new version of Strava UI tends to be slow on my machine. This extension is made so that everyone can enjoy Strava, even without a powerful device.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | ilogdlddgndehmpabkafohhfapaopgkd |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/stravini/ilogdlddgndehmpabkafohhfapaopgkd |
คำอธิบาย | Get back control over your Strava feed. STRAVINI offers a light and clean Strava experience. |
ขนาดไฟล์ | 44.32 KB |
จำนวนการติดตั้ง | 2,000 |
เวอร์ชันปัจจุบัน | 0.0.1.30 |
อัปเดตครั้งล่าสุด | 2019-06-26 |
วันที่เผยแพร่ | 2019-06-26 |
คะแนน | 4.63/5 รวมทั้งหมด 24 คะแนน |
ผู้พัฒนา | stravini.extension |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "STRAVINI", "description": "Get back control over your Strava feed. STRAVINI offers a light and clean Strava experience.", "version": "0.0.1.30", "browser_action": { "default_icon": "icon.png" }, "permissions": [ "activeTab", "storage", "webRequest", "*:\/\/www.strava.com\/dashboard", "webRequestBlocking" ], "content_scripts": [ { "matches": [ "https:\/\/www.strava.com\/*" ], "css": [ "stravini.css" ], "js": [ "jquery-3.2.1.min.js", "jquery.initialize.min.js", "stravini.js" ], "run_at": "document_start" } ], "background": { "scripts": [ "background.js" ] } } |