Skip to content

Commit 2c51116

Browse files
committed
feat: 支持kdh,nh格式文件抓取知网元数据 fixed l0o0#50
1 parent dc99ace commit 2c51116

File tree

1 file changed

+3
-3
lines changed
  • chrome/content/scripts

1 file changed

+3
-3
lines changed

chrome/content/scripts/ui.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ Zotero.Jasminum.UI = new function () {
5757
var filename = item.getFilename();
5858
// Find Chinese characters in string
5959
if (escape(filename).indexOf("%u") < 0) return false;
60-
// Extension should be CAJ or PDF
61-
var ext = filename.substr(filename.length - 3, 3);
62-
if (ext != "pdf" && ext != "caj") return false;
60+
// Extension should be CAJ , PDF, kdh, nh
61+
var ext = filename.match(/\.(\w+)$/, filename)[1];
62+
if (!['pdf', 'caj', 'kdh', 'nh'].includes(ext)) return;
6363
return true;
6464
}.bind(Zotero.Jasminum);
6565

0 commit comments

Comments
 (0)