TiffOne

View embedded TIFF files and AlternaTIFF objects directly in your browser.

TiffOneคืออะไร?

TiffOne เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Zoltán Fraknói และคุณลักษณะหลักของมันคือ "View embedded TIFF files and AlternaTIFF objects directly in your browser."

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

screenshot
screenshot
screenshot

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

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

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

                        TiffOne is a browser extension that lets you view TIFF images in your browser. It scans the page, looking for images that have a "tiff" or "tif" extension, and converts those images into HTML canvases, which can then be displayed by modern browsers. TiffOne supports the multi-page functionality of TIFF images, which can be accessed by the header menu right above the displayed image. The extension provides a full screen functionality, and a print option for easy viewing and saving of the images. The extension can be turned off when not needed from the popup menu of the browser icon.

TiffOne currently supports all Chromium based browsers, but it has only been tested on Google Chrome and Chromium based Microsoft Edge.

The extension is only handling TIFF files, and does not collect or analyze any other data. The purpose of this extension is solely to display TIFF files in the browser, to give a convenient way to view them.

Full source code can be found at: https://github.com/Vogete/TiffOne
Problems, issues, feature requests can be submitted to: https://github.com/Vogete/TiffOne/issues                    

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

ชื่อ TiffOne TiffOne
ID mhdcjcilknaincbghadamlbdfgnpcebg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/tiffone/mhdcjcilknaincbghadamlbdfgnpcebg
คำอธิบาย View embedded TIFF files and AlternaTIFF objects directly in your browser.
ขนาดไฟล์ 1.42 MB
จำนวนการติดตั้ง 2,882
เวอร์ชันปัจจุบัน 0.3.1
อัปเดตครั้งล่าสุด 2020-04-08
วันที่เผยแพร่ 2020-04-07
คะแนน 4.33/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Zoltán Fraknói
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Vogete/TiffOne
URL หน้าช่วยเหลือ https://github.com/Vogete/TiffOne/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "TiffOne",
    "version": "0.3.1",
    "description": "View embedded TIFF files and AlternaTIFF objects directly in your browser.",
    "author": "Zolt\u00e1n Frakn\u00f3i",
    "minimum_chrome_version": "51",
    "icons": {
        "16": "assets\/TiffOne_logo_16px.png",
        "32": "assets\/TiffOne_logo_32px.png",
        "48": "assets\/TiffOne_logo_48px.png",
        "128": "assets\/TiffOne_logo_128px.png"
    },
    "web_accessible_resources": [
        "templates\/*",
        "fonts\/*",
        "css\/printing.css"
    ],
    "permissions": [
        "*:\/\/*\/*",
        "file:\/\/*\/*",
        "storage"
    ],
    "browser_action": {
        "default_title": "TIffOne",
        "default_popup": "html\/popup.html"
    },
    "background": {
        "scripts": [
            "js\/helper.js",
            "js\/background.js"
        ],
        "persistent": false
    }
}