Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6582557
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T16:17:41+00:00 2026-05-25T16:17:41+00:00

I want to display a different menu option depending on whether a number or

  • 0

I want to display a different menu option depending on whether a number or text is selected.

I’ve tried playing with content scripts but I can’t get them to work in gmail which is where I need it to work. Here is what I have, it works on sites other than gmail (is it a https thing?)

Background.html

<script src="driver.js"></script>

content_script.js

document.addEventListener("mousedown", function(event){
  if(event.button == 2) {
    var selection = window.getSelection().toString();
    chrome.extension.sendRequest({cmd: selection});
  }

}, true);

driver.js

chrome.extension.onRequest.addListener(function(request) {
    alert(request.cmd);
});

manifest.json

{
"name": "Context Menu Search",
"description": "Opens the selected text as keyword in a new window",
"version": "0.1",
"permissions": ["contextMenus"],
  "content_scripts": [
    {
      "matches": ["http://*/*","https://*/*"],
      "js": ["content_script.js"]
    }
  ],
"background_page": "background.html"
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T16:17:42+00:00Added an answer on May 25, 2026 at 4:17 pm

    Selection type changes context menu using chrome extension

    You will have to set a listener for mouse down. There is no other way to get the selected text before the menu is created.

    See this SO question:

    chrome extension context menus, how to display a menu item only when there is no selection?

    Here is part of the code the rest is at the link.

    document.addEventListener("mousedown", function(event){
    //right click
    if(event.button == 2) {
        if(window.getSelection().toString()) {
            chrome.extension.sendRequest({cmd: "createSelectionMenu"});
        } else {
            chrome.extension.sendRequest({cmd: "createRegularMenu"});
        }
       }
    }, true); 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to display in a panel at run time different controls, depending on
I want to display three different pieces of text in a line underneath a
I want to display different menu according to login user . If user is
I want to display different types of objects in the same ajax called controller
I have some user-submitted variables that I want to display in a different part
I want to popuate a listbox with objects of different types. I display the
I want to display tabular type data, but it will not be coming from
I am trying to display different divs depending on a selection from a drop
I have tried different ways on the net but nothing is working. Below is
i made a vertical menu. I want that the first tab has a different

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.