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

  • SEARCH
  • Home
  • 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 6014957
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T02:46:01+00:00 2026-05-23T02:46:01+00:00

I have developed an extension for opera which lets users to Google +1 websites.

  • 0

I have developed an extension for opera which lets users to “Google +1” websites.
It works fine on stable opera releases,but it crashes opera when run on alpha releases(Opera Next).
The extension passed the moderation and its published,now users are complaining that it crashes with Opera 11.50 which is a alpha release.

Im trying to find ways to fix it,But i only have the crash log to detect where the problem is occuring.

Here is the full crash log(paste bin is giving problems,didnt know where to upload): http://www.mediafire.com/?y3zzn4it1662t4u

Crash log:

OPERA-CRASHLOG V1 desktop 11.50 1027 windows
Opera.exe 1027 (1) caused exception C0000005 at address 73002000 (Base: 90000)

Registers:
EAX=6DEE0167   EBX=063DABD8   ECX=06AF77C0   EDX=004AE5B4   ESI=00000000
EDI=033C1500   EBP=004AE5C8   ESP=004AE5AC   EIP=73002000 FLAGS=00010206
CS=0023   DS=002B   SS=002B   ES=002B   FS=0053   GS=002B
FPU stack:
4015A584B00000000000 00000000000000000000 00000000000000000000
00000000000000000000 00000000000000000000 4007E273560000000000
40038000000000000000 BFF8A200000000000000 SW=4026 CW=027F

Stack dump:
004AE5AC  6D50F2A3  004AE5B4  00000000  033C1500  £òPm´åJ......<
004AE5BC  033C1500  00000000  004AE680 >004AE680  .<....۾J.۾J.
004AE5CC  6D725605  00000000  6D56BFEC  0335DE28  Vrm....ì¿Vm(Þ5
004AE5DC  02E46FA8  063DABC0  004AE688  063DABA0  ¨oäÀ«=ˆæJ. «=
004AE5EC  00000000  00000000  033C1500  00000000  .........<....
004AE5FC  00000000  00000000  00000000  00000000  ................
004AE60C  6DC6A185  00000001  02E46FD8  066324C0  …¡Æm...ØoäÀ$c
004AE61C  00000000  00000000  005889D0  00000001  ........ЉX....
004AE62C  D155E764  D155E764  004AE674  06B028D0  dçUÑdçUÑtæJ.Ð(°
004AE63C  0288EC08  02980B48  77A42907  77A69684  ìˆH.˜)¤w„–¦w
004AE64C  004AE67C  6DC6A2F3  02981760  06B028D0  |æJ.ó¢Æm`˜Ð(°
004AE65C  02E46FD8  06B028D0  06B028DC  02980B48  ØoäÐ(°Ü(°H.˜

If anyone want to analyze my extension:

index.html:

    <!DOCTYPE html>
<html lang="en">
<head>

 <script type="text/javascript">
 /* Window onload event listener */
window.addEventListener("load", function()
      {
       var theButton;
       /* Button properties */
        var ToolbarUIItemProperties = {
            title: "+1 this page",      /*Button title */
            icon: "icons/icon_16.png",  /*Button icon */
            popup: {href: "popup.html", width: 70, height: 90},  /* popup properties */
            badge: {              /* badge properties (not useful right just incase) */
             textContent: '',
             backgroundColor: '#006',
             color: '#ff6',
             display: 'block'
            }
      }
         theButton = opera.contexts.toolbar.createItem(ToolbarUIItemProperties);
         opera.contexts.toolbar.addItem(theButton);  /*Add button to toolbar */
       /* listen for onconnect */
    opera.extension.onconnect = function(event){
      try {   
           event.source.postMessage(opera.extension.tabs.getFocused().url);   
           /* get current focused tab and post it*/
         }
         catch(e)
         { 
         }
    }


       },false);


    </script>

</head>
<body>

</body>
</html>

popup.html:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  <meta http-equiv="Content-Style-Type" content="text/css">
<title></title>
</head>
<body>
<script type="text/javascript" src="http://apis.google.com/js/plusone.js">  /* Load plusone.js */
  {parsetags: 'explicit'}    /* Define explicit render */
</script>

<div id="plusOneContainer"><!-- Container to place the result -->
<g:plusone href="http://www.google.com" size="tall"></g:plusone>
<!-- <img src="icons/loader.gif" alt="Loading..." width=100% />  Loading image -->
</div>


<script>
 /* Window onload event listener */
window.addEventListener("load", function(){   
 /*Listen for message */    
    opera.extension.onmessage = function(event){

        var url=event.data;  /* get current tab url */
        alert(url);
        /* document.getElementById("plusOneContainer").innerHTML = '<g:plusone href="' + url + '" size="tall"></g:plusone>';   render tag */

        }
    }, false);
</script>



<script type="text/javascript">
function render() {
gapi.plusone.go();   /* This renders all +1 tags */
}
window.onload = window.setTimeout(render, 100);
</script>
</body>
</html>
  • 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-05-23T02:46:02+00:00Added an answer on May 23, 2026 at 2:46 am

    The crash is known as CORE-39188 in Opera’s bugtracker, and it will hopefully get fixed before the final 11.50 release.

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

Sidebar

Related Questions

I have developed a chrome extension. The extension itself works fine and fast. But
I have developed some extension methods for objects, which I don't want to be
I have developed an extension that works great on Magento until 1.6 (I'm trying
Actually we have developed one mobile solution, which is used by our customers. But
I have developed a google chrome extension and I have a badge on the
I have developed a firefox extension but firefox (v. 3.6.14) says the extension is
I have developed a pop up extension for google chrome. I have added an
I have developed a python C-extension that receives data from python and compute some
We have developed our website(Business users website) in .net Framework 2.0 Our client us
I have developed about 300 Applications which I would like to provide with multi-language

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.