iNaturalist Enhancement Suite

Adds functionality to iNaturalist

iNaturalist Enhancement Suiteคืออะไร?

iNaturalist Enhancement Suite เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Eric Johnson และคุณลักษณะหลักของมันคือ "Adds functionality to iNaturalist"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย iNaturalist Enhancement Suite

ดาวน์โหลดไฟล์ส่วนขยาย iNaturalist Enhancement Suite ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Adds functionality to iNaturalist (https://www.inaturalist.org).

Current features:
* Adds color-coded computer vision scores to observation and upload pages.
* Shows the count of your observations of a taxon on the taxon's page.
* Adds button to observation & identify pages to easily copy geocoordinates. Also fixes pasting of coordinates into the observation upload map modal.
* Adds identifier stats to observation pages.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ iNaturalist Enhancement Suite iNaturalist Enhancement Suite
ID hdnjehcihcpjphgbkagjobenejgldnah
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/inaturalist-enhancement-s/hdnjehcihcpjphgbkagjobenejgldnah
คำอธิบาย Adds functionality to iNaturalist
ขนาดไฟล์ 30.02 KB
จำนวนการติดตั้ง 694
เวอร์ชันปัจจุบัน 0.8.0
อัปเดตครั้งล่าสุด 2023-12-11
วันที่เผยแพร่ 2020-07-02
คะแนน 4.71/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา Eric Johnson
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/ejhnsn/inaturalist-ext
URL หน้านโยบายความเป็นส่วนตัว https://www.termsfeed.com/live/20cac2c1-317d-4c8a-b5cc-547b95bea9fe
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "iNaturalist Enhancement Suite",
    "description": "Adds functionality to iNaturalist",
    "version": "0.8.0",
    "manifest_version": 3,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.inaturalist.org\/observations\/*",
                "https:\/\/*.inaturalist.nz\/observations\/*",
                "https:\/\/*.naturalista.mx\/observations\/*",
                "https:\/\/*.inaturalist.ca\/observations\/*",
                "https:\/\/*.biodiversity4all.org\/observations\/*",
                "https:\/\/inaturalist.ala.org.au\/observations\/*",
                "https:\/\/*.argentinat.org\/observations\/*",
                "https:\/\/*.inaturalist.mma.gob.cl\/observations\/*",
                "https:\/\/inaturalist.laji.fi\/observations\/*",
                "https:\/\/*.inaturalist.se\/observations\/*",
                "https:\/\/*.inaturalist.lu\/observations\/*",
                "https:\/\/*.www.naturalista.uy\/observations\/*"
            ],
            "js": [
                "arrive-2.4.1.min.js",
                "content-observation.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/*.inaturalist.org\/observations\/upload",
                "https:\/\/*.inaturalist.nz\/observations\/upload",
                "https:\/\/*.naturalista.mx\/observations\/upload",
                "https:\/\/*.inaturalist.ca\/observations\/upload",
                "https:\/\/*.biodiversity4all.org\/observations\/upload",
                "https:\/\/inaturalist.ala.org.au\/observations\/upload",
                "https:\/\/*.argentinat.org\/observations\/upload",
                "https:\/\/*.inaturalist.mma.gob.cl\/observations\/upload",
                "https:\/\/inaturalist.laji.fi\/observations\/upload",
                "https:\/\/*.inaturalist.se\/observations\/upload",
                "https:\/\/*.inaturalist.lu\/observations\/upload",
                "https:\/\/*.www.naturalista.uy\/observations\/*upload"
            ],
            "js": [
                "arrive-2.4.1.min.js",
                "content-upload.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/*.inaturalist.org\/taxa\/*",
                "https:\/\/*.inaturalist.nz\/taxa\/*",
                "https:\/\/*.naturalista.mx\/taxa\/*",
                "https:\/\/*.inaturalist.ca\/taxa\/*",
                "https:\/\/*.biodiversity4all.org\/taxa\/*",
                "https:\/\/inaturalist.ala.org.au\/taxa\/*",
                "https:\/\/*.argentinat.org\/taxa\/*",
                "https:\/\/*.inaturalist.mma.gob.cl\/taxa\/*",
                "https:\/\/inaturalist.laji.fi\/taxa\/*",
                "https:\/\/*.inaturalist.se\/taxa\/*",
                "https:\/\/*.inaturalist.lu\/taxa\/*",
                "https:\/\/*.www.naturalista.uy\/taxa\/*"
            ],
            "js": [
                "arrive-2.4.1.min.js",
                "content-taxa.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "gradient.css",
                "sidebar.css",
                "domContext.js"
            ],
            "matches": [
                "https:\/\/*\/*"
            ]
        }
    ]
}