我想知道是否有人知道Javascript Bookmarklet让标签变得不可见?例如,Javascript:。我环顾了Stackoverflow和网络。我使用的是Chromebook。我在Chrome浏览器中的浏览器确实需要帮助。
答案 0 :(得分:-1)
javascript:(function() {
var link = document.querySelector("link[rel*='icon']") || document.createElement('link');
link.type = 'image/x-icon';
link.rel = 'shortcut icon';
link.href = 'https://ssl.gstatic.com/docs/doclist/images/infinite_arrow_favicon_5.ico';
document.title='My Drive - Google Drive';
console.log(document.title);
document.getElementsByTagName('head')[0].appendChild(link);https://twitter.com/TitaniumNetwerk
})();