ヤフオク系ブックマークレット2022

Quick Edit Pencil
目次

ヤフオク商品ページ印刷最適化ブックマークレット

  1. javascript:
  2.  
  3. /* -----------------------------------------------
  4. ヤフオク商品ページ印刷最適化ブックマークレット
  5. TAGO.OKに投稿してる
  6. https://tagook.blogspot.com/2022/04/2022_24.html
  7. ----------------------------------------------- */
  8.  
  9. /*タイトルを変更*/
  10. document.title = document.title.replace(/商品画像│|商品ページ│/g, '');
  11. document.title = '商品ページ│' + document.querySelector("#ProductTitle > div > h1").textContent + " - ヤフオク!";
  12.  
  13. /*スタイルとスクリプト削除*/
  14. var styleElms = document.querySelectorAll("#bmcustom");
  15. for (var i = 0; i < styleElms.length; i++) {
  16. console.log(styleElms[i]);
  17. styleElms[i].remove();
  18. }
  19.  
  20. /*スタイル要素を追加*/
  21. var body = document.getElementsByTagName('body').item(0);
  22. var style = document.createElement('style');
  23. var text = text = `
  24. /**/
  25. #fb-root,
  26. #l-header,
  27. #l-footer,
  28. .bannerFrame,
  29. #ProductProcedures,
  30. #Banner,
  31. #pageTop > div.l-contents > div.l-contentsFoot,
  32. /**/
  33. #l-main > div > div.SocialButton,
  34. #l-main > div > div.PosYDNText,
  35. #l-main > div > div.Carousel.js-Carousel.js-recommend-wrap.is-CarouselDisabled,
  36. #l-main > div > div.Carousel.js-Carousel.js-recommend-wrap,
  37. #l-sub > div.ProductInformation > ul > li.ProductInformation__item.js-stickyNavigation-start > div.CouponCrm.js-Carousel,
  38. #auc_detail_paylater_pc,
  39. #l-sub > div.ProductInformation > ul > li > div.ProductInformation__note,
  40. #l-sub > div.ProductInformation > ul > li.ProductInformation__item.js-stickyNavigation-start > div.Price.Price--buynow > div.Price__borderBox > dd,
  41. #auc_detail_ymobile_pc,
  42. #l-sub > div.ProductInformation > ul > li > dl > dd.Seller__note,
  43. #l-sub > div.ProductInformation > ul > li > dl > dd.Seller__card > div,
  44. #l-sub > div.hideLRECState,
  45. #auc_detail_paylater_pc
  46. {display:none!important;}
  47. `;
  48. var rule = document.createTextNode(text);
  49. /*style.media = 'screen';*/
  50. style.type = 'text/css';
  51. style.id = 'bmcustom';
  52. style.appendChild(rule);
  53. body.appendChild(style);
  54.  
  55. /*プリンtダイアログを開く*/
  56. window.print();

ヤフオク商品イメージ印刷最適化ブックマークレット

  1. javascript:
  2.  
  3. /* -----------------------------------------------
  4. ヤフオク商品イメージ印刷最適化ブックマークレット
  5. TAGO.OKに投稿してる
  6. https://tagook.blogspot.com/2022/04/2022_24.html
  7. ----------------------------------------------- */
  8.  
  9. /*タイトルを変更*/
  10. document.title = document.title.replace(/商品画像│|商品ページ│/g, '');
  11. document.title = '商品画像│' + document.querySelector("#ProductTitle > div > h1").textContent + " - ヤフオク!";
  12.  
  13. /*スタイルとスクリプト削除*/
  14. var styleElms = document.querySelectorAll("#bmcustom,link,style,script,noscript");
  15. for (var i = 0; i < styleElms.length; i++) {
  16. console.log(styleElms[i]);
  17. styleElms[i].remove();
  18. }
  19.  
  20. /*スタイル要素を追加*/
  21. var body = document.getElementsByTagName('body').item(0);
  22. var style = document.createElement('style');
  23. var text = text = `
  24. /**/
  25. #fb-root,
  26. #l-header,
  27. #l-footer,
  28. /**/
  29. #pageTop > div.l-contents > div.l-contentsHead,
  30. #pageTop > div.l-contents > div.l-contentsFoot,
  31. #l-sub,
  32. #l-main > div > div.ProductImage.js-imageGallery.js-disabledContextMenu > div.ProductImage__body.js-imageGallery-body > ul > li[class*='is-clone-'],
  33. #l-main > div > div.ProductImage.js-imageGallery.js-disabledContextMenu > div.ProductImage__footer.js-imageGallery-footer,
  34. #l-main > div > div.ProductDetail,
  35. #l-main > div > div.SocialButton,
  36. #l-main > div > div.ProductNote,
  37. #l-main > div > div.PosYDNText,
  38. #l-main > div > div.Carousel.js-Carousel.js-recommend-wrap,
  39. /**/
  40. #StickyNavigation,
  41. #ProductExplanation,
  42. #ProductProcedures,
  43. #Banner,
  44. #BidModals,
  45. #js-BannerFrameHensei
  46. {display:none!important;}
  47. /*リセット*/
  48. *{line-height: normal!important; width: 100%!important; height: auto!important; margin:0!important; padding:0!important;}
  49. /*商品メイン画像の印刷改行指定*/
  50. li.ProductImage__image{padding-top: 1px!important; page-break-after:always!important;}
  51. `;
  52. var rule = document.createTextNode(text);
  53. /*style.media = 'screen';*/
  54. style.type = 'text/css';
  55. style.id = 'bmcustom';
  56. style.appendChild(rule);
  57. body.appendChild(style);
  58.  
  59. /*クリップボードに商品名をコピーして印刷ダイアログを開く*/
  60. async function copyToClipboard(text) {
  61. try {
  62. await navigator.clipboard.writeText(text);
  63. console.log('コピーしました');
  64. /*プリンtダイアログを開く*/
  65. /*window.print();*/
  66. } catch (error) {
  67. alert((error && error.message) || 'コピーに失敗しました');
  68. }
  69. }
  70. copyToClipboard(document.title);

このブログの人気の投稿

PowerShellのGetDetailsOf メソッドでプロパティの詳細情報のID番号と項目名を列挙します

Blender: 辺の長さを数値で指定するアドオン

書字方向 横書方向変換スクリプト 左書きから右書きへ(コピペ用途)

ヤバい!JAPANNEXT WQHD対応 27型ワイド液晶ディスプレイ「JN-IPS2716WQHD」を注文してみた!!!

PowerShellで複数ファイルのプロパティを取得する方法(準備編)

決定版 Edgeでローカルファイルを開く パワーシェルスクリプト (ウインドウズでドロップレット)

カルチャーラジオ 科学と人間 薬と毒の歴史をひも解く 日本薬科大学教授…船山信次

Windows10でアプリケーションごとに輝度を設定、自動で変更する - AutoHotkey