• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space

New Firefox Extension - Easy to create and works in FF 4

How can I link from my site setup?
I tried this code but the error is


Code:
<script type="application/javascript">
<!--
function install (aEvent)
{
  var params = {
    "Foo": { URL: aEvent.target.href,
             IconURL: aEvent.target.getAttribute("iconURL"),
             Hash: aEvent.target.getAttribute("hash"),
             toString: function () { return this.URL; }
    }
  };
  InstallTrigger.install(params);

  return false;
}
-->
</script>

<a href="http://www.example.com/foo.xpi"
  iconURL="http://www.example.com/foo.png"
  hash="sha1:28857e60d043447c5f4550853f2d40770b326a13"
  onclick="return install(event);">Install Extension!</a>

https://developer.mozilla.org/en/Installing_Extensions_and_Themes_From_Web_Pages
 
Hey guys!

If you want it to work on FF4 just edit install.rdf and

it should be like this on the max version part:
Code:
<em:maxVersion>4.2</em:maxVersion>
 
Rejected by Firefox, how to fix?

Comments:
The 'godlikea' chrome namespace should not be used since it's a common one and will cause conflicts with other add-ons. Please fix it and re-upload your add-on.

Thanks
 
Supporting add-ons for a beta is often a bad idea.

While coding you add-ons many changes can be done and your add-ons won't be compatible anymore. Programmers prefers to waits for a RC (Release Candidate) before releasing their add-ons.
 
Does someone know the Version number of firefox 4.0.1?
So that we can change the version in the install.rdf

This is the number for 4.0.0

Code:
<em:maxVersion>4.0b5pre</em:maxVersion>

Or do i have to replace 4.0b5pre with 4.0.1 ??

I searched for the right number, but i haven't found the right number.


Could someone help me?


EDIT://
AH^^
I found the right number.
 
hello,
'Godlike' What exactly is because the developer who looks at the add-on I said that there could have confilts

thank you in advance
 
Back
Top