Instant Video Gallery

This extension detects videos on the current page and creates a gallery overlay for quick viewing

什麼是Instant Video Gallery?

Instant Video Gallery是由ahallicks開發的Chrome擴展程式,該擴展的主要功能是“This extension detects videos on the current page and creates a gallery overlay for quick viewing”。

擴展截圖

screenshot
screenshot
screenshot

下載Instant Video Gallery擴展crx文件

下載Instant Video Gallery擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This extension was called "Quick Show Videos" but has now changed to "Instant Video Gallery" to make it more obvious as to what the extension is for.

This extension comes from an idea I had where I will often follow a link because it promised me a video but upon hitting a webpage the video is not immediately visible. That's annoying. So I decided to write an extension for Chrome that gets the videos on the page and can then display a gallery style overview of just the videos. The added benefit is that if there are links to videos too, it will display them in the gallery so you don't have to leave the page you're on to watch reference videos!

We currently support YouTube, Vimeo and inline videos (added via the HTML5 video tag) but will be updating regularly to add other videos to the gallery.

There's a quick command of Ctrl (Command) + Shift + V to show and hide the gallery if one or more videos is detected on the current web page.

** Please see the update page for the latest updates to this extension **

Updates - Version 1.10.5
------------------------------

 - Fixed errors
 - Added video caching (likes may not always be up to date)
 - Updated the way videos are found, which now works between different pages on YouTube

Updates - Version 1.10.4
------------------------------

 - Fixed YouTube videos no longer working

Updates - Version 1.10.3
------------------------------

 - Fixed issue with some durations not displaying properly
 - Added description as a pop up. Click the button next to close.

Updates - Version 1.10.2
------------------------------

 - Updated YouTube API version to 3 as everything was returning "null"

Updates - Version 1.10.1
------------------------------

 - Fixed an API issue that was causing video information and images not to display.
 - Fixed an issue with the current video highlight that was causing it to appear on more than just the selected video

Updates - Version 1.0.8
------------------------------

This update see the addition of object tags (mainly for flash videos) being included in the video gallery. This is currently experimental as object tags can vary. If you have any issues please leave me some feedback.

Also, this update fixes an issue with actual videos, rather than just embedded videos. They weren't showing before but were playing in the background.

------------------------------

In the latest update we have included a lot more information about the videos for YouTube and Vimeo. You can now see the number of plays, or views, the number of likes (and dislikes on YouTube videos) and the duration of all video types.                    

擴展基本資訊

名稱 Instant Video Gallery Instant Video Gallery
ID focoeinnifbmnbjjdicgncbkmnifckkg
官方網址 https://chrome.google.com/webstore/detail/instant-video-gallery/focoeinnifbmnbjjdicgncbkmnifckkg
簡介 This extension detects videos on the current page and creates a gallery overlay for quick viewing
檔案大小 219 KB
安裝次數 344
目前版本 1.11.1
更新時間 2020-07-06
上架時間 2020-07-04
評分 3.75/5 共 4 次評分
開發者 ahallicks
電子郵箱 [email protected]
付費類型 free
說明頁面URL https://bitbucket.org/ahallicks/instant-video-gallery/issues
支援的語言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Instant Video Gallery",
    "short_name": "IVG",
    "description": "This extension detects videos on the current page and creates a gallery overlay for quick viewing",
    "version": "1.11.1",
    "permissions": [
        "tabs",
        "webNavigation",
        "storage"
    ],
    "page_action": {
        "default_icon": {
            "16": "img\/main\/icon.png",
            "24": "img\/main\/icon-38.png",
            "38": "img\/main\/icon-48.png"
        },
        "default_title": "Instant Video Gallery"
    },
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "js": [
                "js\/QSVMain.js"
            ],
            "matches": [
                "https:\/\/*\/*"
            ],
            "run_at": "document_start",
            "css": [
                "css\/qsvmainstyles.css"
            ]
        }
    ],
    "icons": {
        "16": "img\/main\/icon.png",
        "32": "img\/main\/icon-38.png",
        "48": "img\/main\/icon-64.png",
        "128": "img\/main\/icon-main.png"
    },
    "web_accessible_resources": [
        "font\/frugalsans-light.woff",
        "img\/main\/inline.png",
        "img\/main\/vimeo.png",
        "img\/main\/youtube.png",
        "img\/loading.gif",
        "img\/eye.png",
        "img\/eye-large.png",
        "img\/swf.jpg",
        "img\/thumb-up.png",
        "img\/thumb-up-large.png",
        "img\/thumb-down.png",
        "img\/thumb-down-large.png"
    ],
    "options_page": "options.html",
    "commands": {
        "_execute_page_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+V"
            }
        }
    }
}