Include closing new spotify tab in browser
当前为
// ==UserScript==
// @name Open Spotify links in Desktop app
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Include closing new spotify tab in browser
// @author Sundear
// @match http://*.spotify.com/*
// @grant window.close
// ==/UserScript==
(function() {
'use strict';
if (/track|playlist|album|artist|show|episode/gm.exec(window.location) !== null) {
var meta = document.querySelector("meta[property='al:android:url']");
if (meta) {
var link = meta.getAttribute('content');
if (link) {
window.location.replace(link);
window.close();
}
}
}
})();