rel="canonical"ãªãã¼ã¸ã«ç§»åãããªã³ã¯ãã»ããã£ãã®ã§ä½ã£ãï¼
ç»é¢ã®ä¸ã®ã»ãã«ãªã³ã¯ãåºã¦ï¼æ¼ãã¨canonicalãªãã¼ã¸ã«ç§»åã§ããï¼
// ==UserScript== // @name canonical-link // @namespace http://www.hatena.ne.jp/hitode909 // @include * // ==/UserScript== (function() { if (window != window.parent) { return; } var link = document.querySelector('link[rel="canonical"]'); if (link && link.href != location.href) { var button = document.createElement('a'); document.querySelector('body').appendChild(button); button.appendChild(document.createTextNode('canonical')); console.log(button.style); with(button.style) { position = 'fixed'; width = '100%'; left = 0; bottom = 0; color = '#fff'; background = '#000'; fontSize = '24px'; textAlign = 'center'; textDecoration = 'none'; margin = 0; padding = 0; fontWeight = 'bold'; opacity = 0.5; zIndex = 9999; } button.href = link.href; console.log(button); } })();
ã¨ã¬ã¡ã³ãã«ã¹ã¿ã¤ã«ãè¨å®ããã®ãã¡ãã£ã¨ããã©ãã ã£ãã®ã ãã©ï¼ã©ãããã¨ããæãã«æ¸ããã®ã ãããï¼ã¨æã£ãï¼