NowPlaying - HypeMachine
This chrome extension can tell Last.fm what you are currently listening to on HypeMachine.
NowPlaying - HypeMachineคืออะไร?
NowPlaying - HypeMachine เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Volker Lanting และคุณลักษณะหลักของมันคือ "This chrome extension can tell Last.fm what you are currently listening to on HypeMachine."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย NowPlaying - HypeMachine
ดาวน์โหลดไฟล์ส่วนขยาย NowPlaying - HypeMachine ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
NowPlaying - HypeMachine is a Chrome browser extension that can tell Last.fm what you are currently listening to on HypeMachine. HypeMachine already scrobbles your tracks to your Last.fm profile after they have been playing for a while, but that is only half of the actual scrobbling process. This Chrome extension will do the other half. It notifies Last.fm about which track is currently playing. Using NowPlaying - Hypemachine and HypeMachine's native scrobbling feature together will result in a proper scrobbling process. This means that your current playing song will be returned by the Last.fm user.getRecenTracks api call. --------------- Issues, Bugs, Questions and Source The project is maintained on GitHub: http://github.com/volkerl/nowplaying-hypemachine. Please report any questions or issues there as well: http://github.com/volkerl/nowplaying-hypemachine/issues. --------------- License Copyright (C) 2014 Volker Lanting This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. See http://www.gnu.org/licenses/gpl-3.0.txt for the full license.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | dadplfmhpmchkhbhanoeaeagojlpafab |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/nowplaying-hypemachine/dadplfmhpmchkhbhanoeaeagojlpafab |
คำอธิบาย | This chrome extension can tell Last.fm what you are currently listening to on HypeMachine. |
ขนาดไฟล์ | 154 KB |
จำนวนการติดตั้ง | 14 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2014-01-16 |
วันที่เผยแพร่ | 2014-01-16 |
ผู้พัฒนา | Volker Lanting |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://github.com/volkerl/nowplaying-hypemachine |
URL หน้าช่วยเหลือ | http://github.com/volkerl/nowplaying-hypemachine/issues |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "NowPlaying - HypeMachine", "description": "This chrome extension can tell Last.fm what you are currently listening to on HypeMachine.", "version": "1.0", "icons": { "128": "images\/icon128.png", "48": "images\/icon48.png" }, "background": { "scripts": [ "lib\/jquery2.0.3.js", "lib\/md5.js", "background\/lastfm-background.js", "background\/hypem-background.js", "background\/background.js" ] }, "permissions": [ "webRequest", "storage", "http:\/\/hypem.com\/*" ], "content_scripts": [ { "matches": [ "http:\/\/hypem.com\/*", "https:\/\/hypem.com\/*" ], "js": [ "lib\/jquery2.0.3.js", "content-scripts\/hypem.js" ] } ], "browser_action": { "default_icon": { "38": "images\/offIcon38.png", "19": "images\/offIcon19.png" }, "default_popup": "browser-action\/popup.html" } } |