Skip to content
This repository has been archived by the owner on Jan 17, 2023. It is now read-only.

Commit

Permalink
Fix #5330, show context menu when there's a text selection (#5334)
Browse files Browse the repository at this point in the history
  • Loading branch information
ianb authored and jaredhirsch committed Jan 25, 2019
1 parent 242f4a2 commit ce5db49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webextension/background/startBackground.js
Expand Up @@ -50,7 +50,7 @@ this.startBackground = (function() {
browser.contextMenus.create({
id: "create-screenshot",
title: browser.i18n.getMessage("contextMenuLabel"),
contexts: ["page"],
contexts: ["page", "selection"],
documentUrlPatterns: ["<all_urls>", "about:reader*"],
});

Expand Down

0 comments on commit ce5db49

Please sign in to comment.