开发者

Google mail insert into text window chrome-extension

Has anybody heard of a way to insert text into the message text window of Google Mai开发者_如何学编程l (when writing a new email) by using a Chrome extension?

I thought about inserting HTML via the extension into the class or id field of the message window (if there is any).


With JQuery you can do it like this

function addText(myText)
{
    $content=$('#canvas_frame').contents().find('body div table form iframe').contents().find('body');
    $content.html($content.html()+ myText);
}
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜