Just Stream

Are you tired of all the ads of streaming sites? Just Stream filters everyting but the video so you can enjoy your streams again.

Just Stream là gì?

Just Stream là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Are you tired of all the ads of streaming sites? Just Stream filters everyting but the video so you can enjoy your streams again.".

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

screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Just Stream 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

                        How does it work?
Streaming sites usually embed videos from video hosting sites and add advertisements on top of it. Just Stream extract the video from the page that it hosted, and replace the contents of the streaming site just with the video. I makes you save a lot of time closing overlays.

Usage
Just Stream works automatically when it detects a embeded video, taking that video to the front. You can always deactivate Just Stream for websites where you don't want it to work.

Does it removes the ads completely?
Just Stream is not an ad blocker, it just replace the streaming page contents with the embeded video. That is enough to remove all the ads from the streaming website but, if there are advertisements in the video hosting site, they will still be there. You can expect multiple improvements in the future, but right now it already saves you a lot of hassle. The use of an ad blocker is also recommended.

Changelog

## Version 1.1.0

* Improves video detection: Reduce wrong videos to the front. Added videos using  element.
* Takes the video to the very front of the iframe.
* Adds fullscreen capabilities for all videos.                    

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

Tên Just Stream Just Stream
ID pcophbkkcbbhpdkkpknbfcoogejbafic
URL Chính Thức https://chromewebstore.google.com/detail/just-stream/pcophbkkcbbhpdkkpknbfcoogejbafic
Mô tả Are you tired of all the ads of streaming sites? Just Stream filters everyting but the video so you can enjoy your streams again.
Kích Thước Tệp 127 KB
Số Lần Cài Đặt 531
Phiên Bản Hiện Tại 1.2.0
Cập Nhật Lần Cuối 2017-02-26
Ngày Phát Hành 2017-02-26
Đánh Giá 4.00/5 Tổng số 8 Đánh Giá
Nhà Phát Triển Unknown
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://juststream.arqex.com/
Ngôn Ngữ Được Hỗ Trợ en,es
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Just Stream",
    "version": "1.2.0",
    "manifest_version": 2,
    "description": "__MSG_description__",
    "homepage_url": "http:\/\/arqex.com",
    "icons": {
        "16": "icons\/icon-justStream.png",
        "48": "icons\/icon-justStream.png",
        "128": "icons\/icon-justStream.png"
    },
    "default_locale": "en",
    "background": {
        "page": "src\/bg\/background.html",
        "persistent": true
    },
    "browser_action": {
        "default_icon": "icons\/icon-justStream.png",
        "default_title": "Just Stream",
        "default_popup": "src\/browser_action\/browser_action.html"
    },
    "permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "storage",
        "tabs",
        "webNavigation"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "css": [
                "src\/inject\/inject.css"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "src\/browser_action\/utils.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "src\/inject\/searcher.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "\/icons\/*"
    ]
}