Auto open in the Spotify app
Automatically sends all Spotify URLs to the dedicated Spotify app
Τι είναι το Auto open in the Spotify app;
Το Auto open in the Spotify app είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Ben Cheshire, και η κύρια λειτουργία του είναι "Automatically sends all Spotify URLs to the dedicated Spotify app".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Auto open in the Spotify app
Λήψη αρχείων επέκτασης Auto open in the Spotify app σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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 :)
Βασικές Πληροφορίες Επέκτασης
Όνομα | Auto open in the Spotify app |
ID | pkghcmlaendnidgjofmeeaalkiphalkg |
Επίσημο URL | https://chromewebstore.google.com/detail/auto-open-in-the-spotify/pkghcmlaendnidgjofmeeaalkiphalkg |
Περιγραφή | Automatically sends all Spotify URLs to the dedicated Spotify app |
Μέγεθος Αρχείου | 41.94 KB |
Αριθμός Εγκαταστάσεων | 339 |
Τρέχουσα Έκδοση | 1.2.1 |
Τελευταία Ενημέρωση | 2020-12-08 |
Ημερομηνία Δημοσίευσης | 2020-05-23 |
Αξιολόγηση | 5.00/5 Συνολικά 5 Αξιολογήσεις |
Προγραμματιστής | Ben Cheshire |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | 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" } |