Skip to content

No longer working on Firefox #2

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.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

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