Mixcloud (with) Tracklist
Display tracklists on Mixcloud
Mixcloud (with) Tracklistคืออะไร?
Mixcloud (with) Tracklist เป็นส่วนขยายของ Chrome ที่พัฒนาโดย TrepDev และคุณลักษณะหลักของมันคือ "Display tracklists on Mixcloud"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Mixcloud (with) Tracklist
ดาวน์โหลดไฟล์ส่วนขยาย Mixcloud (with) Tracklist ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
- Displays tracklists for Mixcloud Website. - You can play any track directly by clicking on its timestamp. - You can copy tracklist to clipboard General Limitations: - Tracklists and timestamps are available only when the mix uploader has provided them. - The displayed tracklist is from your first open Mixcloud tab (if you have multiple tabs open). By first, I mean the one on the far left. - Don't work on mobile website (m.mixcloud.com). Mixcloud has limited its functionality, encouraging users to migrate to the mobile app. Therefore mobile website version is not scheduled for implementation. Select Track Playing Limitations - Playing Track in media player works only for tracks with timestamp available. Select Track Playing Limitations No personal info is used/collected. Scheduled updates for the future - Manage tracklist form multi-tab - Manifest v3 >_< Changelog 3.0.0 Mixcloud (with) Tracklist v3 (Redesign due to Mixcloud breaking changes) Now Tracklist is displayed in Extension popup 2.3.4 Due to some changes on Mixcloud Website, this extension is currently broken. Fix release is scheduled for the end of January. See https://github.com/trepDev/mixcloud-with-tracklist/issues/33 for more details. 2.3.3 - Fix WebExtension due to html modifications on Mixcloud website. 2.3.2 - Fix Extension due to modifications made on the website (API url). 2.3.1 - Fix Style with new Mixcloud CSS classes - Move tracklist button before "More" button - Remove click on track title. It was annoying if you just wanted to highlight it (for instance to copy it) 2.3.0 Mixcloud Website design and GraphQL API has changed (June 2023). As a result Mixcloud (with) Tracklist Extension is broken. This version 2.3.0 fixes everything. 2.2.0 - Add copy to clipboard functionality (for Tracklist) 2.1.0 - Fix select track playing feature - New design for tracklist - Vuejs under the hood (instead of Mustache) 2.0.0 - Add time display - Add select track playing feature - Rework settings (replace tracklist default behaviour by TrackNumber/Time display default behaviour) - Correct display bugs with select profile 1.0.1 - Fix potential security issue - Fix display bug on tracklist button
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Mixcloud (with) Tracklist |
ID | jgghogcekaldifaiifpnbfnpmmpiengb |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/mixcloud-with-tracklist/jgghogcekaldifaiifpnbfnpmmpiengb |
คำอธิบาย | Display tracklists on Mixcloud |
ขนาดไฟล์ | 59.43 KB |
จำนวนการติดตั้ง | 1,010 |
เวอร์ชันปัจจุบัน | 3.0.0 |
อัปเดตครั้งล่าสุด | 2024-02-01 |
วันที่เผยแพร่ | 2019-12-10 |
คะแนน | 4.60/5 รวมทั้งหมด 10 คะแนน |
ผู้พัฒนา | TrepDev |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/trepDev/mixcloud-with-tracklist |
URL หน้าช่วยเหลือ | https://github.com/trepDev/mixcloud-with-tracklist |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Mixcloud (with) Tracklist", "version": "3.0.0", "description": "Display tracklists on Mixcloud", "icons": { "16": ".\/icons\/icon16.png", "32": ".\/icons\/icon32.png", "48": ".\/icons\/icon48.png", "96": ".\/icons\/icon96.png", "128": ".\/icons\/icon128.png" }, "applications": { "gecko": { "strict_min_version": "58.0" } }, "permissions": [ "webRequest", "tabs", "http:\/\/*.mixcloud.com\/*", "https:\/\/*.mixcloud.com\/*", "storage" ], "background": { "scripts": [ ".\/background_scripts\/index.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.mixcloud.com\/*" ], "run_at": "document_end", "js": [ ".\/content_script\/index.js" ] } ], "browser_action": { "default_area": "navbar", "default_icon": { "16": ".\/icons\/icon16.png", "32": ".\/icons\/icon32.png", "48": ".\/icons\/icon48.png", "96": ".\/icons\/icon96.png", "128": ".\/icons\/icon128.png" }, "default_title": "Mixcloud (with) Tracklist", "default_popup": "popup\/popup.html", "theme_icons": [ { "light": ".\/icons\/icon16-light.png", "dark": ".\/icons\/icon16.png", "size": 16 }, { "light": ".\/icons\/icon32-light.png", "dark": ".\/icons\/icon32.png", "size": 32 }, { "light": ".\/icons\/icon48-light.png", "dark": ".\/icons\/icon48.png", "size": 48 }, { "light": ".\/icons\/icon96-light.png", "dark": ".\/icons\/icon96.png", "size": 96 }, { "light": ".\/icons\/icon128-light.png", "dark": ".\/icons\/icon128.png", "size": 128 } ] }, "web_accessible_resources": [ "onboarding\/onboarding.html", "onboarding\/ext-icon.png", "templates\/no-mixcloud.html", "templates\/no-tracklist.html", "icons\/icon48.png" ] } |