【发布时间】:2015-04-17 18:05:13
【问题描述】:
我正在尝试构建 google chrome 扩展程序。 以下是我的清单文件;我到处搜索并采取了每一步来解决 chrome-extension://ijkjkkkinepajpigeijodppknjgdooef/popup.html 错误代码:ERR_FILE_NOT_FOUND
{
"manifest_version": 2,
"update_url": "http://clients2.google.com/service/update2/crx",
"name": "Game Extension",
"version": "1.2.0",
"description": "Just for Fun",
"icons": {
"256": "img/icon.png"
},
"browser_action": {
"default_popup": "popup.html"
},
"permissions": [
"tabs",
"identity",
"http://*/*",
"https://*/*"
],
"oauth2": {
"client_id": "232343423423PrivateClientKey",
"scopes": ["https://www.googleapis.com/auth/userinfo.email"]
}
}
我已经做了所有事情,但问题仍然存在。另外,在扩展内
文件夹(**%LOCALAPPDATA%\Google\Chrome\User Data**),和其他扩展一样,我的扩展没有文件夹。
请让我知道出了什么问题。
【问题讨论】:
-
后台页面有错误吗?
标签: javascript google-chrome google-chrome-extension file-not-found