img2tab
Opens all images from a page into a new tabbed window. Great for image focused sites like reddit, 4chan etc.
img2tab là gì?
img2tab là một tiện ích mở rộng Chrome được phát triển bởi http://www.windowbox.me, và tính năng chính của nó là "Opens all images from a page into a new tabbed window. Great for image focused sites like reddit, 4chan etc.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng img2tab
Tải xuống các tệp mở rộng img2tab 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
Quickly get access to full quality images on a website. When you get tired of opening images or linked images into a new tab or window over and over again, or just want to review all the images on a page, this extension is perfect. This could be useful to users of image rich websites who want quick and simple access to the images included on these sites. This can be used to quickly scrape sites like Reddit, Forums and Image Boards. Note that you can cycle through the tabs of the new window in chrome using * Next - Ctrl + Page Up * Previous - Ctrl + Page Down Changes: -------- 1.83 Fixed a bug where tabs might appear empty due to timing 1.82 Reworked reddit support using the API. Long urls are now ellipsified. Added better gfycat.com handling. Using a more async model. Shares codebase with Firefox. 1.73 Added more options - Tab coloring - Ignoring thumbs Better gifv and webm support Better de-duplication and useless image filtering 1.72 Added webm and jpeg to file type filters Fixed width/horizontal scrolling issue Re-added all context options Re-wrote large portions of the code, particularly tab communication. Removed mostly unused context menu items
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | kbbalffcbdlngpklndognfpcipmhdmod |
URL Chính Thức | https://chrome.google.com/webstore/detail/img2tab/kbbalffcbdlngpklndognfpcipmhdmod |
Mô tả | Opens all images from a page into a new tabbed window. Great for image focused sites like reddit, 4chan etc. |
Kích Thước Tệp | 234 KB |
Số Lần Cài Đặt | 6,000 |
Phiên Bản Hiện Tại | 1.83 |
Cập Nhật Lần Cuối | 2018-01-10 |
Ngày Phát Hành | 2018-01-10 |
Đánh Giá | 4.08/5 Tổng số 51 Đánh Giá |
Nhà Phát Triển | http://www.windowbox.me |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://windowbox.me/img2tab |
URL Trang Trợ Giúp | http://windowbox.me/img2tab |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "img2tab", "version": "1.83", "description": "Opens all images from a page into a new tabbed window. Great for image focused sites like reddit, 4chan etc.", "icons": { "16": "16x16.png", "48": "48x48.png", "128": "128x128.png", "256": "256x256.png" }, "permissions": [ "tabs", "contextMenus", "storage", "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "page": "background.html" }, "options_ui": { "page": "options.html", "chrome_style": true }, "content_scripts": [ { "js": [ "common.js", "img2tab.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ] } |