Questions tagged [kango-framework]

Kango is an cross-browser extension framework, based on web-standards. Now everyone developer familiar with JavaScript can create extensions for all major browsers including even Internet Explorer.

Kango is an cross-browser extension framework, based on web-standards. Now everyone developer familiar with JavaScript can create extensions for all major browsers including even Internet Explorer.

24 questions
6
votes
1 answer

How to load Google Analytics and Facebook SDK in chrome extension?

I'm developing a chrome extension using Kango framework, and I waned to use both Google Analytics and facebook SDK. I edited the manifest file to include the follwoign "content_security_policy": "script-src 'self' https://ssl.google-analytics.com…
3
votes
1 answer

Cannot get tab title

I am working on a browser extension for which I need to know the current tab title. I manage to find the title from the the HTML page code but, from after documenting more about this I have found that there are easier ways to do this. I have tried…
Vlad Vlad
  • 132
  • 2
  • 13
2
votes
1 answer

Read content of a local file with chrome extension

I am developing an extension for the chrome browser. I use the KangoExtensions framework. The extension is written in JavaScript. I want to read the content of a file, which is located on the local filesystem. What is the easiest way to implement…
2
votes
1 answer

kango extension popup wont open

I'm making a cross browser extension using Kango. I'm sending a message from the content script to the background page and I want that a popup displays when the message is received by the background script. Here's what I have so far background…
Irtza.QC
  • 1,026
  • 2
  • 10
  • 23
2
votes
1 answer

kango how to open popup on click of Context menu

I am creating Kango Extension. under main.js here is my code kango.ui.browserButton.setPopup({url:'popup.html'}); kango.ui.contextMenuItem.addEventListener(kango.ui.contextMenuItem.event.CLICK, function() { /here i want to open…
Hitu Bansal
  • 2,917
  • 10
  • 52
  • 87
1
vote
1 answer

How to load external files (html,js,css) in kango framework

I am working on Kango framework. In which I am facing problem to fetch external files in kango framework (browser extension).
Popat Shirsath
  • 141
  • 1
  • 1
  • 7
1
vote
3 answers

How to inspect DOM in firefox addon?

Hi) I'm developing addon for firefox with kango framework. Can you advise some efficient ways how to inspect DOM in firefox addon popup?
1
vote
0 answers

How to remove or change small margins on firefox extension popup?

I'm building an extension with Kango. In Chrome everything works fine and there are no margins or borders, but in Firefox I have these margins. How can I fix this?
1
vote
0 answers

Use native sdk in cross browser plugin tool

I am using kango extension to make cross browser plugin. But I need to use part of native firefox sdk. But I have a problem with following code: var window = require('sdk/window/utils').getMostRecentBrowserWindow(); This doesn't work at all and…
1110
  • 7,829
  • 55
  • 176
  • 334
1
vote
1 answer

Can't load html file in page via javascript

I am using kango extensions for browser plugin development. I am trying to load file (simple.html) content that is inside plugin folder to browser page. But I am getting this issue: Denying load of …
1
vote
1 answer

Popup on mouseover event in Kango browser extension development

I am developing a browser extension using Kango Extension Framework By Using Content-scripts i have injected some code into the page like shown below
ɹɐqʞɐ zoɹǝɟ
  • 4,342
  • 3
  • 22
  • 35
1
vote
1 answer

Execute binary with parameters located inside addon folder

I am using kango framework - http://kangoextensions.com/docs/index.html and would like to execute a binary (with CLI arguments) located inside my addon folder. The examples shared here: http://forums.mozillazine.org/viewtopic.php?t=446245 does not…
1
vote
1 answer

Kango won't build the IE plugin

I have created a plug-in in kango, and when I run the build command it builds the firefox and chrome plugins, IE plugin is not build and it says: "Contact extensions@kangoextensions.com to enable IE support", tried on linux and windows and on both…
1
vote
1 answer

select a tab by ID in Kango browser extension

I'm using the Kango framework to develop a browser extension. I open a new tab to let the user input some info. When they submit the form it closes the tab, but I want to select the tab they were previously viewing. This is pretty trivial in Chrome…
daviddripps
  • 93
  • 1
  • 7
1
vote
3 answers

Use local files with Browser extensions (kango framework)

I'm working on a "browser extension" using "Kango Framework" (http://kangoextensions.com/) When i want to link a css file i have to use external source (href='http://mysite.com/folder/mysite.css), how should i change the href to make is source from…
1
2