Lastique

Last.fm scrobbler for YouTube and VKontakte

Lastique란 무엇입니까?

Lastique은(는) Anton Romanovich에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Last.fm scrobbler for YouTube and VKontakte"입니다.

확장 프로그램 스크린샷

screenshot

Lastique 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Extension allowing you to scrobble to Last.fm in Google Chrome.

* Updates the "Listening Now" feature on Last.fm
* Scrobbles now playing songs at 50% played time
* Shows list of recently played songs in popup window
* Allows to unscrobble songs
* Allows to love/unlove songs
* Allows to download tracks from vk.com
* Does not require your Last.fm username and password

The current version of Lastique only supports YouTube and VKontakte (vk.com).

http://vk.com/lastique

Lastique can be easily extended to support other services as well.
Project released under MIT license and hosted on Github. You are welcome to contribute:
https://github.com/aromanovich/lastique                    

확장 프로그램 기본 정보

이름 Lastique Lastique
ID iepmcfkedcobclgjlblahmlekodmnmmk
공식 URL https://chromewebstore.google.com/detail/lastique/iepmcfkedcobclgjlblahmlekodmnmmk
설명 Last.fm scrobbler for YouTube and VKontakte
파일 크기 70.64 KB
설치 횟수 2,022
현재 버전 0.1.13
최근 업데이트 2017-02-17
출시 날짜 2017-02-16
평점 3.72/5 총 118 개의 평점
개발자 Anton Romanovich
결제 유형 free
확장 프로그램 웹 사이트 http://vk.com/lastique
도움말 페이지 URL http://vk.com/lastique
지원되는 언어 en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Lastique",
    "version": "0.1.13",
    "default_locale": "en",
    "description": "__MSG_extensionDescription__",
    "icons": {
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "icon-128.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "libs\/zepto.min.js",
            "libs\/md5.js",
            "lastfm.js",
            "shared_constants.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                "injector.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "shared_constants.js",
        "connectors\/utils.js",
        "connectors\/vk.js",
        "connectors\/youtube.js",
        "connectors\/bandcamp.js"
    ]
}