4

我尝试使用alert(document.domain);但在站点中测试它时没有获得正确的域,

我得到“hiecjmnbaldlmopbbkifcelmaaalcfib”这个奇怪的输出。

我也在清单中添加了这个

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

        }
  ],

警报(文档.域);是inject.js 中唯一的文本行。

之后我将其合并<script type="text/javascript" src="inject.js"> </script>到主 html 文件中popup.js

关于为什么我没有得到正确的域 url 的任何想法?

谢谢!

4

1 回答 1

7

如果您在弹出或背景或选项页面中,则有一种间接方法可以获取页面域。

您可以参考以下代码作为参考。

示范

清单.json

已注册的内容脚本、后台和弹出脚本以及清单文件以及相关权限

{
    "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

注册popup.js超越CSP。

<html>

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

    <body></body>

</html>

popup.js

添加了事件监听器DOM Content Loaded,并带来了用户所在选项卡的活动 URL。

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);
        }
    });
});

背景.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);
    }
});

输出

你会找到

fgbhocadghoeonlokakijhnlplgkolbg

作为 console.log(document.domain) 的输出;在所有扩展页面和

http://somedomain.com/

用于tabs.query()输出。

但是,内容脚本输出总是

http://somedomain.com/

参考

于 2013-02-12T05:40:29.910 回答