Skip to content

No longer working on Firefox #2

@benjaminpwarren

Description

@benjaminpwarren

This extension has just stopped working on Firefox with a tab.title is undefined error.

Fix is simple, just change
if( (tab.title.toLowerCase()).search(keywords[i]) > -1 ) { return true; }
to
if( 'title' in tab && (tab.title.toLowerCase()).search(keywords[i]) > -1 ) { return true; }

Sorry, don't have time to do a PR.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions