javascript Programming Glossary: userscripts
Log a web page's dynamically-created, DOM elements with a userscript http://stackoverflow.com/questions/10083010/log-a-web-pages-dynamically-created-dom-elements-with-a-userscript tracks the dynamic functions before hand javascript dom userscripts share improve this question To track all dynamically loaded.. calls. It works with both Greasemonkey Firefox and Chrome userscripts UserScript @name _Track dynamically added elements @namespace..
Chrome userscript error: “Unsafe JavaScript attempt to access frame” http://stackoverflow.com/questions/10666258/chrome-userscript-error-unsafe-javascript-attempt-to-access-frame 650px javascript google chrome iframe greasemonkey userscripts share improve this question It's true that ordinary javascript.. for security reasons. However this by no means stops userscripts in Chrome Tampermonkey or Greasemonkey. You can process iframed..
Why is window (and unsafeWindow) not the same from a userscript as from a <script> tag? http://stackoverflow.com/questions/10824697/why-is-window-and-unsafewindow-not-the-same-from-a-userscript-as-from-a-scrip explain me why javascript greasemonkey variable scope userscripts share improve this question See Are Chrome user scripts.. global namespace like Greasemonkey scripts . Both Chrome userscripts content scripts and Greasemonkey scripts are isolated from the.. JS. Injection advantages The only way for non Tampermonkey userscripts to access objects or functions provided by the target page...
How can you find the height of text on an HTML canvas? http://stackoverflow.com/questions/1134586/how-can-you-find-the-height-of-text-on-an-html-canvas
How to use GM_xmlhttpRequest in Injected Code? http://stackoverflow.com/questions/11377191/how-to-use-gm-xmlhttprequest-in-injected-code code javascript google chrome extension greasemonkey userscripts share improve this question GM_ functions will not work..
Choosing and activating the right controls on an AJAX-driven site http://stackoverflow.com/questions/15048223/choosing-and-activating-the-right-controls-on-an-ajax-driven-site by Tampermonkey and partially supported by Chrome userscripts to do any cross domain page calls or to store any values between..
Injecting JS functions into the page from a Greasemonkey script on Chrome http://stackoverflow.com/questions/2303147/injecting-js-functions-into-the-page-from-a-greasemonkey-script-on-chrome google chrome google chrome extension greasemonkey userscripts share improve this question The only way to communicate..
Removing an anonymous event listener http://stackoverflow.com/questions/3106605/removing-an-anonymous-event-listener without replacing the element javascript greasemonkey userscripts share improve this question There is no way to cleanly remove..
UserScripts & Greasemonkey: calling a website's JavaScript functions http://stackoverflow.com/questions/5006460/userscripts-greasemonkey-calling-a-websites-javascript-functions Thanks. javascript google chrome extension greasemonkey userscripts share improve this question Background Doesn't Greasemonkey.. lwburk @include http stackoverflow.com questions 5006460 userscripts greasemonkey calling a websites javascript functions UserScript..
Copy to clipboard without Flash http://stackoverflow.com/questions/6355300/copy-to-clipboard-without-flash automatically without flash and for user side it's for userscripts and of course cross browser. javascript jquery clipboard ..
Can a website know if I am running a userscript? http://stackoverflow.com/questions/8548141/can-a-website-know-if-i-am-running-a-userscript was sent to the client javascript facebook greasemonkey userscripts share improve this question Yes in theory a site can deduce..
Downloading an image using XMLHttpRequest in a userscript http://stackoverflow.com/questions/8778863/downloading-an-image-using-xmlhttprequest-in-a-userscript on how to do this javascript xmlhttprequest file download userscripts share improve this question XMLHttpRequest will not work.. is a userscript Chrome now supports GM_xmlhttpRequest in userscripts only. Something like this should work note that it is asynchronous..
Is there any way of passing additional data via custom events? http://stackoverflow.com/questions/9417121/is-there-any-way-of-passing-additional-data-via-custom-events custom events I need to pass data between two autonomic userscripts ideally w o touching the unsafeWindow object and I thought using.. javascript dom javascript events google chrome extension userscripts share improve this question Yes you can use a MessageEvent..
|