ama
code:book.js
javascript:(function(){
// HTMLからvalueを取得
const title = document.getElementById('productTitle').textContent.trim();
let imageurl;
if(document.getElementById('imgTagWrapperId')){
imageurl = document.getElementById('imgTagWrapperId').querySelector('img').src;
}
else{
imageurl = document.getElementById('ebooks-img-canvas').querySelector('img').src;
}
const asin = document.getElementById('ASIN').value;//ASIN番号の処理
const keyword = window.prompt('検索キーワード.', title);
//Amazon
// 楽天
const rakutenlink = '🛍️楽天Books('+ rakuten + ')'; // honto
// 紀伊国屋
// BookWalker
const img = '!+title+ '|200(' +imageurl+ ')';
const itemname = '🚚『' +keyword + '』🚚PR'; const text = img + '\n' + itemname + '\n' + amazonlink + '\n'+ rakutenlink +'\n'+ hontolink +'\n'+ kinokuniyalink +'\n'+ bookwalkerlink +'\n'; // 画像とリンクを改行して連結する
document.getElementById('centerCol').innerHTML = '<textarea style="height:500px">'+text+'</textarea>';
})();
code:ob.js
javascript:(function(){
// HTMLからvalueを取得
const imageurl = document.getElementById('imgTagWrapperId').querySelector('img').src;
const title = document.getElementById('productTitle').textContent.trim();
const asin = document.getElementById('ASIN').value;//ASIN番号の処理
const keyword = window.prompt('検索キーワード.', title);
//Amazon
// 楽天
const rakutenlink = '🛍️楽天で検索('+ rakuten + ')'; // Yahoo
const img = '!+title+ '|200(' +imageurl+ ')';
const itemname = '🚚' +keyword + '🚚PR'; const text = img + '\n' + itemname + '\n' + amazonlink + '\n'+ rakutenlink +'\n'+ yahoolink +'\n'; // 画像とリンクを改行して連結する
document.getElementById('centerCol').innerHTML = '<textarea style="height:500px">'+text+'</textarea>';
})();