| javascript Programming Glossary: popuplChrome extension adding external javascript to current page's html http://stackoverflow.com/questions/10285886/chrome-extension-adding-external-javascript-to-current-pages-html  information for default_icon icon.png default_popup popup.html permissions tabs http https  background scripts refresh.js page.. 
 Content-Security-Policy error in google chrome extension making http://stackoverflow.com/questions/11045653/content-security-policy-error-in-google-chrome-extension-making  links optional shown in tooltip default_popup popup.html optional content_scripts  matches all_urls js background.js..  matches all_urls js background.js  manifest_version 2 popup.html doctype html html head title My Awesome Popup title script function.. of defining getPageandSelectedTextIndex function in popup.html you should put it into a popup.js file and include it in popup.html.. 
 chrome extension insert content script on browser action http://stackoverflow.com/questions/11545743/chrome-extension-insert-content-script-on-browser-action  directive script src 'self' chrome extension resource popup.html 5 . Which is where the inline script in popup.html is and the.. popup.html 5 . Which is where the inline script in popup.html is and the script does not work I have manifest.json browser_action.. browser_action default_icon images icon.gif default_popup popup.html manifest_version 2 description MEH name My First Extension permissions.. 
 Chrome extension: Communication between content script and background.html http://stackoverflow.com/questions/11752341/chrome-extension-communication-between-content-script-and-background-html  if request.greeting hello alert hello background  popup.html code doctype html html head head body form input type button.. manifest.json browser_action default_icon icon.png popup popup.html background page background.html permissions tabs http  https.. 
 Console shows error about Content Security policy and lots of failed GET requests http://stackoverflow.com/questions/12089752/console-shows-error-about-content-security-policy-and-lots-of-failed-get-request  of the console log Following there's the code involved popup.html doctype html html head title NGI Little Helper Subscribes title.. to the security. I've not used any inline code in my popup.html. Manifest.json name NGI Little Helper version 0.8.5 manifest_version..  browser_action default_icon img icon.png default_popup popup.html default_title Visualizza Subscriptions permissions  gaming.ngi.it.. 
 Web Page Source Annotation Tool http://stackoverflow.com/questions/14244498/web-page-source-annotation-tool  browser_action default_icon screen.png default_popup popup.html manifest_version 2 version 1 popup.html html head script src.. default_popup popup.html manifest_version 2 version 1 popup.html html head script src popup.js script head body div id pushhere.. 
 Accessing Current Tab DOM Object from “popup.html”? http://stackoverflow.com/questions/1964225/accessing-current-tab-dom-object-from-popup-html  Current Tab DOM Object from &ldquo popup.html&rdquo  I'm developing an extension for Google Chrome browser... out how to access the current tab DOM object from the popup.html page. any suggestions  javascript google chrome   share improve.. the extension to your content script via popup so in the popup.html you do something like this chrome.tabs.getSelected null function.. 
 is it possible to open a popup with javascript and then detect when the user closes it? http://stackoverflow.com/questions/3291712/is-it-possible-to-open-a-popup-with-javascript-and-then-detect-when-the-user-clo  in someFunctionToCallWhenPopUpCloses var popUp window.open popup.html thePopUp function someFunctionToCallWhenPopUpCloses window.setTimeout.. main window. Adjust interval to suit. var win window.open popup.html thePopUp var pollTimer window.setInterval function if win.closed.. 
 Cross-Origin XMLHttpRequest in chrome extensions http://stackoverflow.com/questions/9421933/cross-origin-xmlhttprequest-in-chrome-extensions  help My manifest file name The popup version 0.1 popup popup.html permissions http https https www.google.com http www.google.com.. clock 19.png default_title This is title default_popup popup.html the actual call function sendRequest document.write Sending.. 
 |