redleafnew / zotero-updateifsE

Green Frog https://github.com/redleafnew/zotero-updateifs 的easyScholar数据版。更新影响因子,其他一系列工具,详见Readme
GNU Affero General Public License v3.0
704 stars 22 forks source link

可否加入中科院预警 #77

Closed lyk7539511 closed 1 year ago

lyk7539511 commented 1 year ago

如题,中科院预警挺有用的,但是我好像没有发现提供中科院预警,请问是否可以加入该功能

redleafnew commented 1 year ago

easyScholar中数据有吗?有的话才可以。

redleafnew commented 1 year ago

选中条目,运行以下代码,看看需要哪个内容

  var items = ZoteroPane.getSelectedItems();
  var item = items[0]; 
  let secretKey = Zotero.Prefs.get('extensions.zotero.greenfrog.secretkey', true);
  //publicationTitle =encodeURIComponent(item.getField('publicationTitle'));
  var publicationTitle = Zotero.ItemTypes.getName(item.itemTypeID) == 'journalArticle' ?
      encodeURIComponent(item.getField('publicationTitle')) :
      encodeURIComponent(item.getField('conferenceName') );

  var url = `https://easyscholar.cc/open/getPublicationRank?secretKey=${secretKey}&publicationName=${publicationTitle}`;
  let req = await Zotero.HTTP.request('GET', url, { responseType: 'json' });
  return req.response;
lyk7539511 commented 1 year ago

选中条目,运行以下代码,看看需要哪个内容

  var items = ZoteroPane.getSelectedItems();
  var item = items[0]; 
  let secretKey = Zotero.Prefs.get('extensions.zotero.greenfrog.secretkey', true);
  //publicationTitle =encodeURIComponent(item.getField('publicationTitle'));
  var publicationTitle = Zotero.ItemTypes.getName(item.itemTypeID) == 'journalArticle' ?
      encodeURIComponent(item.getField('publicationTitle')) :
      encodeURIComponent(item.getField('conferenceName') );

  var url = `https://easyscholar.cc/open/getPublicationRank?secretKey=${secretKey}&publicationName=${publicationTitle}`;
  let req = await Zotero.HTTP.request('GET', url, { responseType: 'json' });
  return req.response;

WeChat1796d3121156f9550077439375735461

@redleafnew 您好,我尝试了一下,需要json中的sciwarn这个字段, https://earlywarning.fenqubiao.com/#/zh-cn/early-warning-journal-list-2023 ,这个是预警名单,您开发的时候可以用这里面的文章作为参考

redleafnew commented 1 year ago

好的,我抽时间添加一下。

redleafnew commented 1 year ago

其它字段没有需要的了是吧

redleafnew commented 1 year ago

把你的条目有预警的,上传一个json格式,Zotero中右键导出,我试一下

lyk7539511 commented 1 year ago
[
    {
        "id": "zarrinchianChipActivationProtocol2023",
        "type": "article-journal",
        "abstract": "Penetration of recycled integrated circuits into electronic components’ supply chain has been a major concern in recent decades. Due to shorter lifetime compared to original counterparts, deploying recycled components into electronic products can cause potential reliability and performance issues, apart from economic loss for the chip manufacturers. Current countermeasures proposed for addressing IC recycling can only detect counterfeit components, but cannot prevent them from entering into the supply chain, yet no prevention approach has been introduced for this purpose. In this paper, a chip activation protocol is proposed which, once approved and standardized among chip manufacturers, can actively protect ICs against recycling attacks. In this approach, each integrated circuit performs a simple and lightweight authentication procedure and enters into its normal operation mode only when the authentication procedure succeeds. Recycled ICs would be non-functional due to failed authentication. Experimental results on a 32-bit microprocessor reveal that the proposed approach incurs low overhead to the chip area, while imposing zero timing overhead to the normal operation of the chip.",
        "container-title": "Microprocessors and Microsystems",
        "DOI": "10.1016/j.micpro.2023.104872",
        "ISSN": "0141-9331",
        "journalAbbreviation": "Microprocess. Microsyst.",
        "language": "en",
        "note": "JCR分区: Q2\n中科院分区升级版: 计算机科学3区\n影响因子: 3.50\n5年影响因子: 2.438\nEI: 是\nJCI: 0.67",
        "page": "104872",
        "source": "ScienceDirect",
        "title": "A chip activation protocol for preventing IC recycling",
        "URL": "https://www.sciencedirect.com/science/article/pii/S0141933123001187",
        "volume": "101",
        "author": [
            {
                "family": "Zarrinchian",
                "given": "Ghobad"
            }
        ],
        "accessed": {
            "date-parts": [
                [
                    "2023",
                    6,
                    7
                ]
            ]
        },
        "issued": {
            "date-parts": [
                [
                    "2023",
                    9,
                    1
                ]
            ]
        }
    }
]
lyk7539511 commented 1 year ago

all和select里面都有这个sciwarn字段,我不太确定是哪个。其他字段暂时不需要了,多谢。

redleafnew commented 1 year ago

源代码已经上传https://github.com/redleafnew/zotero-updateifsE/commit/4150c8c666c5c1608787de86a81e09208c02882e

打包的插件测试后上传。

redleafnew commented 1 year ago

名称叫SCI预警还是中科院预警比较好?

lyk7539511 commented 1 year ago

这个预警名单是中国科学院文献情报中心-期刊分区表团队发布的,中文应该叫“中科院预警”会比较好一点,英文名称不确定。

redleafnew commented 1 year ago

改为中科院预警和CAS Waring了

lyk7539511 commented 1 year ago

太棒了!

redleafnew commented 1 year ago

https://github.com/redleafnew/zotero-updateifsE/releases/tag/0.13.0