jquery Programming Glossary: stopscm
Trying to add a feature to a Chrome Extension that will prevent scmplayer from autoplaying on page visits http://stackoverflow.com/questions/17517777/trying-to-add-a-feature-to-a-chrome-extension-that-will-prevent-scmplayer-from-a You must inject a javascript code to page. Here is my extension files content.js var actualCode ' ' function function stopScm try SCM.pause alert scm player was stopped catch e setTimeout stopScm 1000 stopScm ' ' var script document.createElement.. var actualCode ' ' function function stopScm try SCM.pause alert scm player was stopped catch e setTimeout stopScm 1000 stopScm ' ' var script document.createElement 'script' script.textContent actualCode document.head document.documentElement.. actualCode ' ' function function stopScm try SCM.pause alert scm player was stopped catch e setTimeout stopScm 1000 stopScm ' ' var script document.createElement 'script' script.textContent actualCode document.head document.documentElement .appendChild..
|