Reddit Image Preview
Previewing images on reddit is faster than ever.
什麼是Reddit Image Preview?
Reddit Image Preview是由Alexandru Stamp開發的Chrome擴展程式,該擴展的主要功能是“Previewing images on reddit is faster than ever.”。
擴展截圖
下載Reddit Image Preview擴展crx文件
下載Reddit Image Preview擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Want to check an image before clicking on the link ? This is where this extension come to help. Best extension to use on /r/funny, /r/pcmasterrace, /r/pics , etc. It supports images provided by imgur.com (90% of reddit.com images), gfycat.com, reddituploads.com(reddit direct upload). Hover your mouse cursor on a post title where it`s URL(link) is an image to preview it. Image preview is displayed in the middle of the screen. To cancel the preview move the mouse somewhere else. This works on the front page and every subreddit. To enable or disable the extension, just press the Reddit Image Preview icon in the top left then press disable/enable. More image providers support soon. For any questions or problems send an email to : [email protected]
擴展基本資訊
名稱 | Reddit Image Preview |
ID | epkgcgdkdcihbmiapdajdhnkccaggbam |
官方網址 | https://chromewebstore.google.com/detail/reddit-image-preview/epkgcgdkdcihbmiapdajdhnkccaggbam |
簡介 | Previewing images on reddit is faster than ever. |
檔案大小 | 51.28 KB |
安裝次數 | 1,066 |
目前版本 | 1.5 |
更新時間 | 2016-05-31 |
上架時間 | 2016-05-31 |
評分 | 2.91/5 共 11 次評分 |
開發者 | Alexandru Stamp |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Reddit Image Preview", "version": "1.5", "description": "Previewing images on reddit is faster than ever.", "background": { "scripts": [ "jquery-2.2.3.min.js", "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "*:\/\/*.reddit.com\/*", "*:\/\/reddit.com\/*" ], "js": [ "jquery-2.2.3.min.js", "content.js" ] } ], "browser_action": { "default_title": "Reddit Image Preview", "default_icon": "img-on.png", "default_popup": "popup.html" }, "icons": { "128": "img-on.png" }, "permissions": [ "storage" ] } |