Questions tagged [crossrider]

Crossrider is a cloud-based development framework that enables developers to easily create cross browser extensions while maintaining a single codebase.

Crossrider is a an emerging cloud-based development framework that enables developers to easily create cross browser extensions. It uses a single API and supports JavaScript and jQuery so developers with basic knowledge in JavaScript can write code that is easily maintainable while working across all major browsers - Chrome, Firefox, IE, and Safari.

This tag should be used for general questions regarding how the Crossrider framework works and how to use the API.

Questions about browser-specific extension issues should not be tagged with Crossrider if the question is specifically about a certain browser's API (use , , etc.).

238 questions
1
vote
1 answer

Frames object loop in javascript is undefined

I have written a browser extension with crossrider.com, and need to loop through frames on the page using javascript code, HTML code. (Main.html)
0
votes
2 answers

Document click not working on dynamic element

Content script: var $ = window.$.noConflict(true); // Required for IE function startFunc() { $('a').mouseover(function(e){ var anchor=this; var href=$(anchor).attr('href'); if(href!='#'){ …
saikiran
  • 2,247
  • 5
  • 27
  • 42
0
votes
0 answers

how to join to crossrider API

I read about crossrider API today and tried to find a page to signup or register in that as they said in http://www.crossrider.org/ but didnt find any page or any form for such action. anyone knows about the problem? many links that i found in the…
0
votes
1 answer

Crossrider external js file not loading :PDFJS is not defined

Below are my codes in extension.js. If you look at the codes, I tried different ways to load the file to my extension. No matter what, I always getting VM3051:15 Uncaught ReferenceError: PDFJS is not defined Tried with putting the file in different…
0
votes
1 answer

Getting fatal error for msi with AD policy

We use Crossrider extension for IE browser. Now we want to deploy that in our hole network using AD policy.But when we download this exe and convert into MSI file, that MSI work fine manually on single m/c, But when we are using AD policy for…
0
votes
1 answer

Get key on contextmenu click

I am looking to get the key of the menu item which was clicked in a list of contextmenu's, does anyone know how, this is how I create the context menu: for(var i=0; i<10; i++) { appAPI.contextMenu.add("key_" + i, 'Test', function (data) { …
John Doe
  • 836
  • 2
  • 10
  • 17
0
votes
1 answer

Getting current page url from an extension using crossrider

I am trying to set up an extension for firefox, chrome, safari and internet explorer, I am using crossrider. Basically I want to display a browser action when clicked displays a popup containing an input text with the current page url and a button…
vincenth
  • 1,732
  • 5
  • 19
  • 27
0
votes
1 answer

Crossrider: Extension cannot find dynamically generated iframes (IE 11)

I am making an IE 11 add-on that can read an SVG element, wrap it with other HTML and then open up the pop-up with the newly generated HTML to have it printed. The problem I am facing is that even though I have turned on "Run in IFrame" in my…
Moon
  • 33,439
  • 20
  • 81
  • 132
0
votes
1 answer

How do I open a Crossrider popup based on a new page opening?

I have a Crossrider extension which pops up a menu with a PNG image (in popup.html) when the extension icon is clicked. This works fine. But I also want to open popup.html in the same way when the user enters certain URL patterns (this part is also…
Mike D.
  • 1
  • 1
0
votes
1 answer

IncludeCSS not working on IE

I want to create a browserAction on my extension and when I click on the browserAction's icon open an options page (similar what we can do in chrome). I created the code to do what I am describing, and when I click on the icon on FF, all works fine…
0
votes
1 answer

Including Bootstrap to Crossrider project

I'm working on Crossrider project, which should be styled as bootstrap(both js and css). I tried to include them as other js files inside extension.js, but instead of styling popover, current site was styled. At the moment I'm using standard
Forin
  • 1,549
  • 2
  • 20
  • 44
0
votes
1 answer

Including JS files to Crossrider project

I'm working on Crossrider extension, I'm new in extension development. I've create basic project based on demos and even included Jasmine for testing. Unfortunately I stucked on creating own resources. Here's my debug project's…
Forin
  • 1,549
  • 2
  • 20
  • 44
0
votes
0 answers

How to apply detach feature in browser extension using crossrider?

Can anyone help me regarding the detached feature , which enables the popup.html I have created to detach from the extension and appear as a popup just like in firebug .
0
votes
1 answer

Crossrider API not ready to receive events?

I'm trying to trigger an event on my crossrider extension. Using the code below the event never gets to the extension. If I put a timeout and wait 5 seconds it does. So is there a way to detect when the extension\api is ready to receive events? …
NullReference
  • 4,404
  • 12
  • 53
  • 90
0
votes
1 answer

Is there a way to unbind events bound with CrossriderAPI.bindExtensionEvent?

I'd like to be able to unbind some events I bind using CrossriderAPI.bindExtensionEvent. Anyone know if this is possible? CrossriderAPI.bindExtensionEvent(document.body, 'eventName', function (e, result) {
NullReference
  • 4,404
  • 12
  • 53
  • 90