Skip to content

Latest commit

 

History

History
39 lines (35 loc) · 1.49 KB

DEVELOPMENT.md

File metadata and controls

39 lines (35 loc) · 1.49 KB

Firefox

Development

  1. Change
    "background": {
       "service_worker": "./dist/background.es.js"
       }
    
    to
    "background": {
       "scripts": ["./dist/background.es.js"]
       },
    
    This is because Firefox still does not have service_worker support.
  2. Add
  3. "browser_specific_settings": {
     "gecko": {
       "id": "[email protected]"
     }
    

},3. Pack extension files into a .zip and then change the extension to .xpi 4. Load this file as temporary add-on inabout:debugging#/runtime/this-firefox. 5. In about:addonsgrant theAccess your data for all websites``` permission.

Publish

Debug messages can be viewed in the Browser console which can be opened with Ctrl + Shift + J or Cmd + Shift + J

Opera

Development

  1. In manifest.json change short_name to BullDet
  2. Ensure there is no __MACOSX directory in the zip file, use i.e. zip -r dir.zip . -x '.*' -x '__MACOSX'