我的 Chrome 扩展程序有问题,完全是清单文件。
{
"manifest_version": 2,
"permissions": [
"file://*/*",
"activeTab",
"http://www.pdfzorro.com/"
],
"name": "PDFzorro - PDF Editor",
"version": "0.0.0.11",
"short_name": "PDF-Dateien bearbeiten - edit PDF files",
"description": "edit PDF files online, direct from GoogleDrive",
"icons": { "16": "logo16.png",
"128": "logo.png" },
"container": ["GOOGLE_DRIVE"],
"api_console_project_id": "000000000000",
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
}
}
在 Dev-Mod 中,扩展在 Chrome 中工作。但我无法将压缩后的扩展上传到 Chrome 网上应用店。
错误:“权限”中不允许架构“file://”
我也试过:
file:///
file://
file:///*
file://*/*
..但没有任何效果。
应用程序工作和上传工作的唯一方法是添加<all_urls>
权限。但由于安装应用程序时出现警告,我不希望这样做。