A/B player

Add markers to online audios and loop them as you want. Speed up or down the audio. Indispensible tool for any musician.

A/B player là gì?

A/B player là một tiện ích mở rộng Chrome được phát triển bởi anacierdem, và tính năng chính của nó là "Add markers to online audios and loop them as you want. Speed up or down the audio. Indispensible tool for any musician.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng A/B player

Tải xuống các tệp mở rộng A/B player dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        With this extension, you can loop sections of audio on supported services. This is a really useful tool if you are a musician and want to play along songs you found on your favorite music/video streaming service.

With keyboard shortcuts, it is easy to mark in and out audio. Two markers (A and B) can be placed at current playhead position when you need. You can also change the playback speed down to 0.2x and up to 5x. This is not available for example on YouTube.

Also it is generally not possible to download music from streaming sevices directly to your computer but with the help of web players of these services, it is possible to do music training using the browser.

Currently supported pages;

youtube.com

musi.sh (Apple Music)

vimeo.com

tidal.com

These services will be covered later on upon request;

open.spotify.com

soundcloud.com

Contact me at alinacierdem.com for requests and bug reports.

Icons made by Pixel perfect (https://www.flaticon.com/authors/pixel-perfect)
Creative Commons BY 3.0                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên A/B player A/B player
ID ehajajfffkhkhlagpchojlakciinemfk
URL Chính Thức https://chromewebstore.google.com/detail/ab-player/ehajajfffkhkhlagpchojlakciinemfk
Mô tả Add markers to online audios and loop them as you want. Speed up or down the audio. Indispensible tool for any musician.
Kích Thước Tệp 738 KB
Số Lần Cài Đặt 1,225
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2019-07-04
Ngày Phát Hành 2019-07-04
Đánh Giá 4.38/5 Tổng số 13 Đánh Giá
Nhà Phát Triển anacierdem
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://alinacierdem.com
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "A\/B player",
    "version": "1.0",
    "description": "Add markers to online audios and loop them as you want. Speed up or down the audio. Indispensible tool for any musician.",
    "permissions": [
        "activeTab",
        "declarativeContent"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_popup": ".\/popup\/popup.html",
        "default_icon": {
            "512": "icon.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*",
                "https:\/\/*.musi.sh\/*",
                "https:\/\/*.tidal.com\/*",
                "https:\/\/*.vimeo.com\/*",
                "https:\/\/*.spotify.com\/*"
            ],
            "js": [
                "pageCode.js"
            ]
        }
    ],
    "commands": {
        "setA": {
            "suggested_key": {
                "default": "Ctrl+Shift+Left"
            },
            "description": "Set marker A"
        },
        "setB": {
            "suggested_key": {
                "default": "Ctrl+Shift+Right"
            },
            "description": "Set marker B"
        },
        "speedUp": {
            "suggested_key": {
                "default": "Ctrl+Shift+Up"
            },
            "description": "Speed up"
        },
        "speedDown": {
            "suggested_key": {
                "default": "Ctrl+Shift+Down"
            },
            "description": "Speed down"
        }
    },
    "manifest_version": 2
}