MiniPlay

Control Google Music, Pandora, and Spotify with a popup and keyboard shortcuts.

Τι είναι το MiniPlay;

Το MiniPlay είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Jeff Chen, και η κύρια λειτουργία του είναι "Control Google Music, Pandora, and Spotify with a popup and keyboard shortcuts.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης MiniPlay

Λήψη αρχείων επέκτασης MiniPlay σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        MiniPlay extends Google Play Music, Pandora, and Spotify Web with keyboard shortcuts, a miniplayer, Last.fm scrobbling, rich notifications, and more!

----------------
FEATURES
----------------

- Control playback from a popup
- Browse and search through your library (currently only Google Music is supported)
- Global (Chrome-wide) shortcuts
- Rich notifications with actions
- Last.fm scrobbling

-------------------
PERMISSIONS
-------------------

MiniPlay uses the following permissions:

- Notifications: MiniPlay optionally displays rich notifications when a new song starts
- Storage: MiniPlay associates your settings with your Chrome account, so your settings are consistent across computers
- Tabs: MiniPlay needs to hook into music player tabs to function properly. Also, because some streaming services host their album art images on other domains, MiniPlay requires a more general permission to read data on any website.

-------------------
RECENT UPDATES
-------------------

v0.7.3: Tighten up permissions
v0.7.2: Fix recents page
v0.7.1: Fix Windows popup
v0.7.0: Browse and search your music library (limited to Google Play Music for now)!
v0.6.4: Hotfix for Google Play Music support and performance enhancements
v0.6.3: Fix Last.fm for real
v0.6.2: Fix Google Play Music support (again), and fix Last.fm support
v0.6.1: Fix Google Play Music support
v0.6.0: Add a playlist view, minor visual changes, and speed improvements
v0.5.2: Fix Play/Pause button swap on Google Play
v0.5.1: Fix Google Play Music support
v0.5.0: Beautiful new design and support for Pandora, Spotify Web, and Songza
v0.4.5: More responsive controls
v0.4.3: Add volume slider
v0.4.0: Add time slider and significantly reduce resource usage
v0.3.5: Added Last.fm toggle to the popup
v0.3.4: Revamped settings page
v0.3.3: Enable Google analytics
v0.3.0: Add support for Last.fm scrobbling
v0.2.0: Rich notifications support and an options page
v0.1.0: Initial release

The extension does not collect any information, but requires access to your other tabs for functionality.

MiniPlay is open source (github.com/iambald/MiniPlay)                    

Βασικές Πληροφορίες Επέκτασης

Όνομα MiniPlay MiniPlay
ID dfddfiedihbijfeacjamchlliogmjjnd
Επίσημο URL https://chromewebstore.google.com/detail/miniplay/dfddfiedihbijfeacjamchlliogmjjnd
Περιγραφή Control Google Music, Pandora, and Spotify with a popup and keyboard shortcuts.
Μέγεθος Αρχείου 937 KB
Αριθμός Εγκαταστάσεων 2,478
Τρέχουσα Έκδοση 0.7.3
Τελευταία Ενημέρωση 2021-03-16
Ημερομηνία Δημοσίευσης 2016-11-26
Αξιολόγηση 4.40/5 Συνολικά 52 Αξιολογήσεις
Προγραμματιστής Jeff Chen
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/iambald/MiniPlay
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/iambald/MiniPlay/issues
URL της Σελίδας Πολιτικής Απορρήτου https://github.com/jchen1/MiniPlay/blob/master/privacy.md
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "MiniPlay",
    "short_name": "MiniPlay",
    "description": "Control Google Music, Pandora, and Spotify with a popup and keyboard shortcuts.",
    "version": "0.7.3",
    "icons": {
        "16": "img\/icon-16.png",
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "author": "Jeff Chen",
    "homepage_url": "https:\/\/github.com\/iambald\/MiniPlay",
    "background": {
        "page": "background.html"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "browser_action": {
        "default_icon": {
            "19": "img\/icon-19.png",
            "38": "img\/icon-38.png"
        },
        "default_title": "MiniPlay",
        "default_popup": "popup.html"
    },
    "permissions": [
        "notifications",
        "storage",
        "tabs",
        "*:\/\/play.google.com\/music*",
        "*:\/\/*.pandora.com\/*",
        "*:\/\/songza.com\/*",
        "*:\/\/play.spotify.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/play.google.com\/music*",
                "*:\/\/*.pandora.com\/*",
                "*:\/\/songza.com\/*",
                "*:\/\/play.spotify.com\/*"
            ],
            "js": [
                "scripts\/loader.js"
            ]
        }
    ],
    "options_page": "options.html",
    "commands": {
        "play": {
            "suggested_key": {
                "default": "MediaPlayPause"
            },
            "description": "Play\/Pause",
            "global": true
        },
        "ff": {
            "suggested_key": {
                "default": "MediaNextTrack"
            },
            "description": "Play next song",
            "global": true
        },
        "rew": {
            "suggested_key": {
                "default": "MediaPrevTrack"
            },
            "description": "Play previous song",
            "global": true
        },
        "up": {
            "description": "Thumbs up"
        },
        "down": {
            "description": "Thumbs down"
        },
        "shuffle": {
            "description": "Shuffle songs"
        },
        "repeat": {
            "description": "Repeat songs"
        }
    }
}