TiffOne

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

TiffOne란 무엇입니까?

TiffOne은(는) Zoltán Fraknói에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "View embedded TIFF files and AlternaTIFF objects directly in your browser."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

TiffOne 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
    }
}