Home

Awesome

Chrome Tailor

Creates Firefox extensions from Google Chrome extensions.

Note: currently only works for Firefox 38+

Usage

chrome-tailor has two commands: run and xpi, with details below. Some options are:

Commands

Install

In order to install you must first have npm installed. Then to install chrome-tailor run this command:

npm install chrome-tailor -g

Usage

To try a Google Chrome extension's source on Firefox Nightly, run this command:

chrome-tailor run -b nightly

Currently Implemented Google Chrome APIs

Currently Supported manifest.json Properties

{
  "name": "",
  "author": "",
  "description": "",
  "version": "",
  "homepage_url": "",
  "browser_action": {
    "default_icon": "",
    "default_title": "",
    "default_popup": "",
  },
  "background": {
    "script": "", // or ..
    "page": ""
  },
  "content_scripts": [
    // ...
  ],
  "permissions": [
    "history",
    "tabs",
    "topSites"
  ],
  overrides: {
    "newtab": ""
  }
}