Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8247997
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T23:02:51+00:00 2026-06-07T23:02:51+00:00

I need to extend the Audio object to provide a stop function. Normally this

  • 0

I need to extend the Audio object to provide a stop function. Normally this code would work:

Audio.prototype.stop = function() {
    this.pause();
    this.currentTime = 0;
}

However, I need this to happen from within a content script of a Chrome Extension, and as the contexts are separate the change does not propagate to the other context.

I have tried using this unsafeWindow hack to attempt to break out of the isolated environment, with no success, as well as attempting to use Object.create and set the constructor property.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T23:02:53+00:00Added an answer on June 7, 2026 at 11:02 pm

    The content script has an isolated execution environment, but it shares the DOM with the page. You can run a script in the actual execution environment of the page by adding a <script> tag to the DOM:

    var s = document.createElement("script");
    s.innerText = "Audio.prototype.stop = function() { this.pause(); this.currentTime = 0; }";
    document.documentElement.appendChild(s);
    

    I believe this code will run the script in both execution environments (or, at the very least, it should run in the page’s environment).

    Note that this solution can only run script during or after resource-load time, not as soon as the DOM is complete, since it requires the browser to process the new script resource being added to the page. That shouldn’t be a problem for your current needs.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to extend a class, which is encapsulated in a closure. This base
Basically what I need is to do something like this App.CommentView = Backbone.View.extend({ className:
I would like to extend the cakephp logging facility. Using $this->log($msg, $level) you can
In some part of my code I need something like this: $product_type = $product->type;
This is an external class I need to extend: public class Binary { public
I need to extend the functionality of the following code snippet to convert spaces
I'm currently creating a metro styled app. Because of this I need to extend
I need to extend this regex to remove space characterless. We use ASP.NET validation
I need to extend built-in WCF authentication, so my new one should work side-by-side
I need to extend the Magento shopping cart to include an extra step for

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.