WherTo - Geo Generator

A Google/OSM extension to make cool 3d models of places 🌍, woot!

WherTo - Geo Generatorคืออะไร?

WherTo - Geo Generator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Bitan Nath และคุณลักษณะหลักของมันคือ "A Google/OSM extension to make cool 3d models of places 🌍, woot!"

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย WherTo - Geo Generator

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

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

                        A simple Chrome Extension that plugs into Google Maps/Google Earth and generates 3d models of any places you see there. Download models as GLTF files (easily convertible to OBJ etc), and use to 3D print, or in other projects!

It works with Google Maps, Google Earth and Open Street Maps! Check it out now!

==== How to Use ====
Simply, install the extension, then open Google Maps or Google Earth or OpenStreetMaps in your browser.

You should see a panel on top of the map browser that shows an icon. Navigate to  the point you want to 3d model on the map, and click refresh. The Tool downloads a model to your browser in GLTF format. You can reuse/convert this to any format you want (for eg, OBJ or DAE). You can also use the excellent https://gltf-viewer.donmccurdy.com/ to visualize the model.

==== Privacy Policy ====

This extension does not collect any PII data and also does not collect any data for tracking or commercial purposes. That being said, please also note that the Software Is Provided "As Is", Without Warranty of Any Kind, Express Or Implied, Including But Not Limited To The Warranties Of Merchantability, Fitness For A Particular Purpose And Non-infringement. In No Event Shall The Authors Or Copyright Holders Be Liable For Any Claim, Damages Or Other Liability, Whether In An Action Of Contract, Tort Or Otherwise, Arising From, Out Of Or In Connection With The Software Or The Use Or Other Dealings In The Software.
 
You can find the detailed privacy policy here: https://www.bhaasha.app/geogen-privacy-policy.html                    

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

ชื่อ WherTo - Geo Generator WherTo - Geo Generator
ID dagocoabelccgpfighhckpchfjgcihnb
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/wherto-geo-generator/dagocoabelccgpfighhckpchfjgcihnb
คำอธิบาย A Google/OSM extension to make cool 3d models of places 🌍, woot!
ขนาดไฟล์ 839 KB
จำนวนการติดตั้ง 84
เวอร์ชันปัจจุบัน 0.8
อัปเดตครั้งล่าสุด 2021-05-19
วันที่เผยแพร่ 2021-05-19
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Bitan Nath
อีเมล [email protected]
ประเภทการชำระเงิน in_app
URL หน้านโยบายความเป็นส่วนตัว https://www.bhaasha.app/geogen-privacy-policy.html
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "WherTo - Geo Generator",
    "version": "0.8",
    "description": "A Google\/OSM extension to make cool 3d models of places \ud83c\udf0d, woot!",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.google.com\/maps\/*",
                "https:\/\/www.google.co.in\/maps\/*",
                "https:\/\/earth.google.com\/*",
                "https:\/\/www.openstreetmap.org\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "lib\/babylon.js",
                "lib\/loaders.js",
                "lib\/materials.js",
                "lib\/serializers.js",
                "lib\/sphericalmercator.js",
                "script.js",
                "content.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "options_page": "options.html",
    "icons": {
        "32": "\/icons\/icon_32.png",
        "16": "\/icons\/icon_16.png",
        "48": "\/icons\/icon_48.png",
        "128": "\/icons\/icon_128.png"
    }
}