开发者

Page behaviour modifying google chrome extension?

I really want to make google mail by default bottom posting, in other words, I want the cursor in the textarea in a reply message to move automatically to the bottom.

Is this possible with google chrome extensions? Have you maybe any other suggestions?

Problems I'm facing:

  1. Run the extension script when gmail is fully loaded
  2. The target textarea is in it's own if开发者_运维百科rame, is it possible to access it?


Yes, you may use the Content Scripts feature of a Chrome extension in order to manipulate the page a user is browsing. Your content script code will run in the context of the web page the user is browsing, and it may interact with the host page almost without limit.

Manipulating Gmail might be a bit trickier than most other pages, due to its dynamic nature. Consider using the jQuery .live() method to make it easy bind to the elements you want to manipulate.

With regard to iframes, you just have to turn on the "all_frames" option in your manifest, which "controls whether the content script runs in all frames of the matching page, or only the top frame."

(I know this question is a bit stale, but I thought maybe you'd still appreciate an answer.)

I hope that helps.

0

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜