Auto open in the Spotify app

Automatically sends all Spotify URLs to the dedicated Spotify app

Auto open in the Spotify app là gì?

Auto open in the Spotify app là một tiện ích mở rộng Chrome được phát triển bởi Ben Cheshire, và tính năng chính của nó là "Automatically sends all Spotify URLs to the dedicated Spotify app".

Ả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 Auto open in the Spotify app

Tải xuống các tệp mở rộng Auto open in the Spotify app 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

                        This extension will automatically send all Spotify URLs to the dedicated Spotify app. Make sure you've installed the official app or it won't work!

No persistent background processes will run while this extension is active :)                    

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

Tên Auto open in the Spotify app Auto open in the Spotify app
ID pkghcmlaendnidgjofmeeaalkiphalkg
URL Chính Thức https://chromewebstore.google.com/detail/auto-open-in-the-spotify/pkghcmlaendnidgjofmeeaalkiphalkg
Mô tả Automatically sends all Spotify URLs to the dedicated Spotify app
Kích Thước Tệp 41.94 KB
Số Lần Cài Đặt 339
Phiên Bản Hiện Tại 1.2.1
Cập Nhật Lần Cuối 2020-12-08
Ngày Phát Hành 2020-05-23
Đánh Giá 5.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Ben Cheshire
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto open in the Spotify app",
    "author": "Ben Cheshire",
    "short_name": "AoS",
    "version": "1.2.1",
    "manifest_version": 2,
    "description": "Automatically sends all Spotify URLs to the dedicated Spotify app",
    "browser_action": {
        "default_icon": {
            "19": "img\/icon19.png",
            "38": "img\/icon38.png"
        }
    },
    "icons": {
        "16": "img\/icon16.png",
        "19": "img\/icon19.png",
        "38": "img\/icon38.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png",
        "256": "img\/icon256.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "1.js"
        ]
    },
    "options_page": "bFramework\/options.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/open.spotify.com\/*",
                "*:\/\/play.spotify.com\/*"
            ],
            "js": [
                "2.js"
            ],
            "run_at": "document_start"
        }
    ],
    "version_name": "1.2.1",
    "minimum_chrome_version": "80"
}