Photo Viewer

Displaying photos of Pinkbike's and IBC's albums and threads in a clean layout

Photo Viewer là gì?

Photo Viewer là một tiện ích mở rộng Chrome được phát triển bởi wevad.dev, và tính năng chính của nó là "Displaying photos of Pinkbike's and IBC's albums and threads in a clean layout".

Ả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 Photo Viewer

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

                        Photo Viewer provides an easy way to browse photos published in photo albums or posted in the forums of the popular mountain bike communities Pinkbike (http://pinkbike.com) and IBC (http://www.mtb-news.de/).
It is especially useful for dedicated photo threads, when you just want to view the pictures, without all the comments in between. But it's also handy for the photo albums because you don't need to click through all the single photo pages anymore.
Just click on the PV icon in the address bar to activate the extension. It gets shown for supported web pages.

The photos are displayed in a floating layout, each linking to its associated album page or post. And the next photos are loaded automatically when you scroll down the page or use the paging buttons in the lower right corner.

Supported pages:
* Pinbike PoD list (http://www.pinkbike.com/photo/podlist/)
* Pinkbike user albums
* Pinkbike category albums
* Pinkbike forum threads
* IBC forum threads


Changelog
---------

0.3.2
Deactivated Photo Viewer for all IBC albums (category albums, user albums, FdT, FdW) as the extension has to be adapted to the latest changes of the  IBC foto website.

0.3.1 
Bugfix: Extension works for Pinkbike albums again, after adapting to Pinkbike's album changes.

0.3
Feature: Resizing images depending on the viewport width
Feature: Ignoring newly introduced avatar images in IBC threads
Bugfix: Fixed error if IBC forum thread has only one page                    

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

Tên Photo Viewer Photo Viewer
ID njeajkicocgcnnjjlmdfhbjhidngomfl
URL Chính Thức https://chrome.google.com/webstore/detail/photo-viewer/njeajkicocgcnnjjlmdfhbjhidngomfl
Mô tả Displaying photos of Pinkbike's and IBC's albums and threads in a clean layout
Kích Thước Tệp 81.59 KB
Số Lần Cài Đặt 3,000
Phiên Bản Hiện Tại 0.3.2
Cập Nhật Lần Cuối 2014-11-17
Ngày Phát Hành 2014-11-17
Đánh Giá 3.84/5 Tổng số 19 Đánh Giá
Nhà Phát Triển wevad.dev
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Photo Viewer",
    "version": "0.3.2",
    "manifest_version": 2,
    "description": "__MSG_manifest_description__",
    "default_locale": "en",
    "icons": {
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "page_action": {
        "default_icon": {
            "19": "icons\/icon19-off.png",
            "38": "icons\/icon38-off.png"
        },
        "default_title": "Photo Viewer"
    },
    "background": {
        "scripts": [
            "background\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.pinkbike.com\/*",
                "*:\/\/*.mtb-news.de\/forum\/t\/*",
                "*:\/\/fotos.mtb-news.de\/*"
            ],
            "js": [
                "lib\/q.min.js",
                "content\/Photo.js",
                "content\/UrlHelper.js",
                "content\/PageLoader.js",
                "content\/ScrollListener.js",
                "content\/PageController.js",
                "content\/parser\/Parser.js",
                "content\/parser\/IbcAlbum.js",
                "content\/parser\/IbcThread.js",
                "content\/parser\/PinkbikeAlbum.js",
                "content\/parser\/PinkbikeThread.js",
                "content\/Renderer.js",
                "content\/Main.js"
            ],
            "css": [
                "style\/album.css"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "style\/album.css",
        "fonts\/*.woff"
    ],
    "permissions": [
        "tabs"
    ]
}