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 9287823
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T19:46:07+00:00 2026-06-18T19:46:07+00:00

I tried to get the domain name using alert(document.domain); But i’m not getting the

  • 0

I tried to get the domain name using alert(document.domain); But i’m not getting the right domain when I test it out in a site,

I get “hiecjmnbaldlmopbbkifcelmaaalcfib” this weird output.

I have added this in the manifest too

  "content_scripts": [
        {
        "js": ["inject.js"]

        }
  ],

alert(document.domain); is the only line of text inside inject.js.

And I’ve incorporated this <script type="text/javascript" src="inject.js">
</script>
into the main html file after popup.js

Any thoughts on why I’m not getting the correct domain url?

Thanks!

  • 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-06-18T19:46:09+00:00Added an answer on June 18, 2026 at 7:46 pm

    If you are in popup or background or options page, there is an indirect approach for obtaining domain of page.

    You can refer to following code as a reference.

    Demonstration

    manifest.json

    Registered content scripts, background and popup scripts with manifest file along with relevant permissions

    {
        "name": "Domain Name",
        "description": "http://stackoverflow.com/questions/14796722/javascript-google-chrome-extension-getting-domain-name",
        "version": "1",
        "manifest_version": 2,
        "content_scripts": [
            {
                "matches": [
                    "<all_urls>"
                ],
                "js": [
                    "myscript.js"
                ]
            }
        ],
        "browser_action": {
            "default_popup": "popup.html"
        },
        "background": {
            "scripts": [
                "background.js"
            ]
        },
        "permissions": [
            "tabs",
            "<all_urls>"
        ]
    }
    

    myscript.js

    console.log(document.domain);// Outputs present active URL of tab
    

    popup.html

    Registered popup.js to surpass CSP.

    <html>
    
        <head>
            <script src="popup.js"></script>
        </head>
    
        <body></body>
    
    </html>
    

    popup.js

    Added Event Listener for DOM Content Loaded, and brought active URL of tab where user is on.

    document.addEventListener("DOMContentLoaded", function () {
        console.log(document.domain);//It outputs id of extension to console
        chrome.tabs.query({ //This method output active URL 
            "active": true,
            "currentWindow": true,
            "status": "complete",
            "windowType": "normal"
        }, function (tabs) {
            for (tab in tabs) {
                console.log(tabs[tab].url);
            }
        });
    });
    

    background.js

    console.log(document.domain); //It outputs id of extension to console
    chrome.tabs.query({ //This method output active URL 
        "active": true,
        "currentWindow": true,
        "status": "complete",
        "windowType": "normal"
    }, function (tabs) {
        for (tab in tabs) {
            console.log(tabs[tab].url);
        }
    });
    

    Output

    You will find

    fgbhocadghoeonlokakijhnlplgkolbg

    as output for console.log(document.domain); in all extension pages and

    and

    http://somedomain.com/

    for tabs.query() output.

    However, Content script output is always

    http://somedomain.com/

    References

    • Tabs API
    • Content Scripts
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I tried to get the domain name using alert(document.domain); But i'm not getting the
I tried to get the SLDeviceVolumeItf interface of the RecorderObject on Android but I
I tried to get my application run at a specified time but I can't
I have tried to get tsung to work on ec2 but to no avail.
Firstly I tried to get fabric working, but it kept asking me for a
I'm using IIS7 and Umbraco 4 to run a clients site but I'm having
I need to remove the domain name from location.href using Javascript. I have links
i am using visual c++, I want to get a domain ip address from
Cannot seem to get a mod_rewrite to work. We have a domain name that
When running svn against our svn server I'm getting this error (domain name and

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.