我正在尝试为linkedin求职制作一个chrome插件。要运行linkedin javascript api,它需要一个domian,所以为了开发我使用了localhost。现在,当单击 chrome 插件时,它会打开一个带有 localhost url 的新选项卡,并使用链接的 API 进行工作搜索。现在我希望 url 页面在插件的背景中运行以获取最新的作业更新。但清单不会在后台加载 url 页面。
这是我的manifest.json
文件
{
"manifest_version": 2,
"name": "Hunt Shire",
"version": "1.0",
"description": "This is a login plugin.",
"background":{
"page": "http://localhost:82/Plugin.html"
},
"browser_action":
{
"defaul_title":"HuntShire",
"default_icon":"Hunt logo.png"
},
"permissions": ["tabs",
"notifications",
"https://platform.linkedin.com/in.js"
],
"web_accessible_resources":["Hunt Logo.png"]
}
无论如何运行它或任何其他方式来运行特定域引用的后台脚本。
http://localhost:82/Plugin.html
这是使用链接 API 获取数据的一些脚本。
api_key: xxxxxxxxxxx
onLoad: onLinkedInLoad
authorize: true
function onLinkedInLoad() {
IN.Event.on(IN, "auth", onLinkedInAuth);
};
function onLinkedInAuth() {
IN.API.Profile("me").fields(["id", "firstName", "lastName", "emailAddress", "positions:(company)", "following"]).result(displayProfiles);
};
// some more query.
但是如果我在其他一些本地 html 文件中这样做,它会给我一个错误
Uncaught Error: JavaScript API Domain is restricted to localhost
。请给我一些提示。
谢谢。