*_edgePreload.js ファイルで、次のように記述されているファイルの末尾に移動します。
})("EDGE-XXXXXXXX");
ID は HTML ソースと同じです。この正確な文字列の直前に(スペースが含まれる場合があります)、次のように新しい変数を追加します(dlContentがまだ同様のスタンザで割り当てられていないことを確認し、割り当てられている場合はその割り当てを置き換えます-あなたのjsファイルは縮小されていると思いますのでこれはあなたのバージョンと同じようには見えませんが、ファイルに貼り付けても機能します!):
dlContent={
dom: [
{
id:'Poster',
type:'image',
tag:'img',
linkURL:"URL/to/some/content",
//This line can be omitted if no linking of the image is desired
linkTarget:"_top",//omit this line if the above line has been omitted
rect:['0','0','100%','100%','auto','auto'],
//values in order: x-pos, y-pos, width, height, ?, ?
// not sure what the two auto values correspond to right now
// the rectangle is the "viewport" into what would be the animation in better browsers.
fill:["rgba(0,0,0,0)",'/path/to/an/image.jpg','0px','0px']
// values in order: background colour and alpha transparency, an image to use, image position x and y within the rectangle defined above.
}]};