Ipcam Viewer

Ipcam Viewer

Ipcam Viewer là gì?

Ipcam Viewer là một tiện ích mở rộng Chrome được phát triển bởi Tristan Teufel, và tính năng chính của nó là "Ipcam Viewer".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Ipcam Viewer

Tải xuống các tệp mở rộng Ipcam Viewer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Google Chrome Ipcam Viewer Extension

Features:
-Stream any JPEG Camera Source
-Camera-Presets
-Multiview
-Fullscreen
-Export / Import JSON File

## My Camera is not listed in the Presets?

Add your Camera to [src/data/cameraModels.json](https://github.com/firsttris/chrome.ipcamviewer/blob/master/src/data/cameraModels.json) and create a pull-request.

I will publish a new version with your camera model.

## Generic Mode

When creating a new camera, don't select any model, simply enter your stream address.

Support / Issues:
[email protected]
https://github.com/firsttris/chrome.ipcamviewer/issues

## MJPEG Support dropped

Render an MJPEG Stream or JPEG's in a HTML < img > tag with the credentials in the Stream URL is not possible due to Chrome security polices.
My first approach was to use chrome.webrequest.onBeforeSendHeaders() to add the credentials to the authorization header of the HTTP request.
I think this is not the best approach since you need to filter the requests of the addon (cameras) from all request the browser made.
This requires the permission "browsingData" (be able to see all requests from the browser) which does no comply with data protection guidelines.
So we have to use XML-HTTP-Requests (fetch) to be able to add credentials to the header.
The only implementation i found was [mjpeg-readale-stream](https://github.com/aruntj/mjpeg-readable-stream/blob/master/index.html).
But it was not peformant enough for daily use.
Their is very little information on how to fetch a mjpeg-readable stream and render it to an < img > tag.

If you can help me with this topic, dont hesitate to contact me.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Ipcam Viewer Ipcam Viewer
ID jjfknbejnpjndceceeefmofphphjiamb
URL Chính Thức https://chromewebstore.google.com/detail/ipcam-viewer/jjfknbejnpjndceceeefmofphphjiamb
Mô tả Ipcam Viewer
Kích Thước Tệp 924 KB
Số Lần Cài Đặt 11,667
Phiên Bản Hiện Tại 0.2.1
Cập Nhật Lần Cuối 2019-08-15
Ngày Phát Hành 2019-08-15
Đánh Giá 3.40/5 Tổng số 10 Đánh Giá
Nhà Phát Triển Tristan Teufel
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://teufel-it.de
URL Trang Chính Sách Bảo Mật http://www.teufel-it.de
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Ipcam Viewer",
    "short_name": "Ipcam Viewer",
    "options_page": "options.html",
    "background": {
        "page": "background.html"
    },
    "permissions": [
        "tabs",
        "storage",
        "notifications",
        "http:\/\/*\/"
    ],
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "browser_action": [],
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "description": "Ipcam Viewer",
    "version": "0.2.1"
}