Bionomia

Adjust GBIF occurrence and dataset pages to include material from Bionomia.

什么是Bionomia?

Bionomia是由https://bionomia.net开发的Chrome扩展程序,该扩展的主要功能是“Adjust GBIF occurrence and dataset pages to include material from Bionomia.”。

扩展截图

screenshot
screenshot

下载Bionomia扩展crx文件

下载Bionomia扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Modify Global Biodiversity Information Facility (GBIF) occurrence pages to show names of identifier(s) and collector(s) along with link(s) to their ORCID or Wikidata account(s) and links to publications where the specimen data have been used.                    

扩展基本信息

名称 Bionomia Bionomia
ID aodffghldlgnmhbeflkmokghpncnldcn
官方URL https://chromewebstore.google.com/detail/bionomia/aodffghldlgnmhbeflkmokghpncnldcn
简介 Adjust GBIF occurrence and dataset pages to include material from Bionomia.
文件大小 64.64 KB
安装次数 85
当前版本 2.3.0
更新时间 2023-05-20
上架时间 2020-06-15
评分 5.00/5 共1次评分
开发者 https://bionomia.net
电子邮箱 [email protected]
付费类型 free
扩展官网 https://bionomia.net
帮助页面URL https://github.com/bionomia/bionomia-chrome/issues
支持的语言 en,fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bionomia",
    "version": "2.3.0",
    "description": "Adjust GBIF occurrence and dataset pages to include material from Bionomia.",
    "minimum_chrome_version": "89",
    "manifest_version": 3,
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "action": {
        "default_title": "Bionomia",
        "default_icon": "images\/icon-16.png"
    },
    "permissions": [
        "webNavigation"
    ],
    "host_permissions": [
        "https:\/\/*.gbif.org\/occurrence\/*",
        "https:\/\/*.gbif.org\/*\/occurrence\/*",
        "https:\/\/*.gbif.org\/dataset\/*",
        "https:\/\/*.gbif.org\/*\/dataset\/*"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.gbif.org\/occurrence\/*",
                "https:\/\/*.gbif.org\/*\/occurrence\/*",
                "https:\/\/*.gbif.org\/dataset\/*",
                "https:\/\/*.gbif.org\/*\/dataset\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "js\/jquery-3.5.1.min.js",
                "js\/svg-inject.min.js",
                "js\/content.js"
            ],
            "css": [
                "css\/style.css"
            ]
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*",
                "js\/*",
                "css\/*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}