playpause

Pause and play again your music

playpause là gì?

playpause là một tiện ích mở rộng Chrome được phát triển bởi Deliaz, và tính năng chính của nó là "Pause and play again your music".

Ả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 playpause

Tải xuống các tệp mở rộng playpause 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

                        PlayPause is a small button which allows to your music and video on pause and then play again. 
Currently supports: 
 – YouTube.com
 – SoundCloud.com
 – PromoDJ.com

It can be more effective if you will set keyboard shortcut on the button in your Chrome Extension page.                    

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

Tên playpause playpause
ID nphcoecmaigjlaadabjihhoaiaopcadk
URL Chính Thức https://chromewebstore.google.com/detail/playpause/nphcoecmaigjlaadabjihhoaiaopcadk
Mô tả Pause and play again your music
Kích Thước Tệp 10.48 KB
Số Lần Cài Đặt 72
Phiên Bản Hiện Tại 2.0.1
Cập Nhật Lần Cuối 2018-09-11
Ngày Phát Hành 2018-09-10
Đánh Giá 5.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Deliaz
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/deliaz/playpause
URL Trang Chính Sách Bảo Mật https://clipboardextension.com/policy.html
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "playpause",
    "version": "2.0.1",
    "description": "Pause and play again your music",
    "permissions": [
        "tabs",
        "*:\/\/promodj.com\/*",
        "*:\/\/*.youtube.com\/*",
        "*:\/\/soundcloud.com\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "imgs\/38.png"
    },
    "icons": {
        "16": "imgs\/16.png",
        "48": "imgs\/48.png",
        "128": "imgs\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/promodj.com\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "inject.js"
    ]
}