When developing a Chrome extension, my background script needs to communicate with the content scripts in the tabs loaded with a particular site.
I was creating a Chrome extension for fun, but i got a problem with my popup page. I used jQuery load() function to load a part of existed page, let\'s say: http://aaa.com:
I\'ve been playing around with a Chrome extension to enable me to right click on some selection of text and search that text on a site like Wikipedia or IMDb. I\'ve managed to do this, but when I righ
I am looking for optimal approach to use file system based data storage in Web Application. Basically, I am developing a Google Chrome Extension, which is in fact a Content Script based. Its functio
I want to replace all the text on the page, for example: all \"Hello\" to \"Hi\" I\'m currently using body.innerHTML = body.innerHTML.replace(\"Hello\", \"Hi\");
As it turns out the answer to my prior question does not work.The problem is that I am overloading the server with requests.The process needs a throttle so that subsequent requests incur a little slow
I\'m developing a chrome extension where I need to create dynamic sub-contextMenus based on some selected text. Like If you select a text, it\'ll send an ajaxrequest from the background.html and creat
I am writing a Google extension.Here my content script modifies a page based on a list of keywords requested from background.But the new innerHTML does not show up on the screen.I\'ve kluged it with a
Is there a way to open a Google Chrome p开发者_开发技巧lugin\'s options.html page via Javascript in background.html?There is a new method that is enabled beginning with Chrome 42:
I made a small extension which takes up about 20000k total memory when installed. I want to reduce this usage.