javascript Programming Glossary: contentscript.js
Accessing global object from content script in chrome extension http://stackoverflow.com/questions/10052259/accessing-global-object-from-content-script-in-chrome-extension script using the chrome.tabs.executeScript null file contentscript.js api. How can I access SomeObject in the contentscript in this.. localStorage.setItem request.name request.value Example contentscript.js chrome.runtime.sendMessage type 'localStorage step 4' name 'preference'..
Call background function of Chrome extension from a site http://stackoverflow.com/questions/13777887/call-background-function-of-chrome-extension-from-a-site Usage sendMessage mixed message function callback contentscript.js Random unique name to be used to minimize conflicts var EVENT_FROM_PAGE.. content_scripts matches http jsfiddle.net jRaPj show js contentscript.js all_frames true run_at document_start This extension was tested..
Showing context menu buttons only when right-clicked on classes that start with “Story” http://stackoverflow.com/questions/14829677/showing-context-menu-buttons-only-when-right-clicked-on-classes-that-start-with background.js content_scripts run_at document_idle js contentscript.js matches all_urls permissions contextMenus background.js The.. it chrome.tabs.onRemoved.addListener removeContextMenus contentscript.js The first part of this script creates simple methods for creating..
Chrome extension regarding injected script + localstorage http://stackoverflow.com/questions/15869183/chrome-extension-regarding-injected-script-localstorage as far as I know I need to have myscript.js injected from contentscript.js because contentscript.js doesn't have access to the html source... to have myscript.js injected from contentscript.js because contentscript.js doesn't have access to the html source. Hopefully somebody here..
DOM Exception 12 for window.postMessage http://stackoverflow.com/questions/16072902/dom-exception-12-for-window-postmessage this question Don't confuse the port.postMessage in the contentscript.js example with window.postMessage . port.postMessage is a Chrome..
Closing popup window created by Google Chrome extension http://stackoverflow.com/questions/3950981/closing-popup-window-created-by-google-chrome-extension content_scripts matches http www.delicious.com save js contentscript.js background.html html script chrome.browserAction.onClicked.addListener.. no toolbar no width 550 height 550' script html contentscript.js if document.URL 'http www.delicious.com save' alert 'closing...'.. seem to do anything. When I remove the URL check in contentscript.js the popup comes up as normal the first alert fires right away..
Text selection and bubble overlay as Chrome extension http://stackoverflow.com/questions/4409378/text-selection-and-bubble-overlay-as-chrome-extension directions . You can use the following code as a startup contentscript.js Add bubble to the top of the page. var bubbleDOM document.createElement..
Cross-domain XMLHttpRequest using background pages http://stackoverflow.com/questions/7699615/cross-domain-xmlhttprequest-using-background-pages http www.stackoverflow.com search content_scripts js contentscript.js matches http www.google.com background scripts background.js..
Google Chome “Application Shortcut”: How to auto-load JavaScript? http://stackoverflow.com/questions/9263671/google-chome-application-shortcut-how-to-auto-load-javascript mobile version 1.0 manifest_version 2 content_scripts js contentscript.js matches http mobile.twitter.com 2. The content script Then.. 2. The content script Then create a file called contentscript.js and add the desired JavaScript code. This script is included.. Extension Inject code in a page using a Content script . contentscript.js var s document.createElement 'script' s.src chrome.extension.getURL..
How can I detect keyboard events in Gmail http://stackoverflow.com/questions/9424550/how-can-i-detect-keyboard-events-in-gmail manifest.json content_scripts matches mail.google.com js contentscript.js run_at document_end contentscript.js function keyDown e console.log.. mail.google.com js contentscript.js run_at document_end contentscript.js function keyDown e console.log e.which Test function keyUp e..
Chrome extension - retrieving Gmail's original message http://stackoverflow.com/questions/9602022/chrome-extension-retrieving-gmails-original-message a script element in the context of the page. Example contentscript.js run_at document_end in manifest var s document.createElement..
|