Bionomia

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

What is Bionomia?

Bionomia is a Chrome extension developed by https://bionomia.net, and its main feature is "Adjust GBIF occurrence and dataset pages to include material from Bionomia.".

Extension Screenshots

screenshot
screenshot

Download Bionomia Extension CRX File

Download Bionomia extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Bionomia Bionomia
ID aodffghldlgnmhbeflkmokghpncnldcn
Official URL https://chromewebstore.google.com/detail/bionomia/aodffghldlgnmhbeflkmokghpncnldcn
Description Adjust GBIF occurrence and dataset pages to include material from Bionomia.
File Size 64.64 KB
Installation Count 85
Current Version 2.3.0
Last Updated 2023-05-20
Publish Date 2020-06-15
Rating 5.00/5 Total 1 Ratings
Developer https://bionomia.net
Email [email protected]
Payment Type free
Extension Website https://bionomia.net
Help Page URL https://github.com/bionomia/bionomia-chrome/issues
Supported Languages 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": [
                ""
            ]
        }
    ]
}