Easy Open full Image
A context menu option to open in a new tab images hosted on googleusercontent/tumblr in full size useful for G+/picasa and tumblr.
什麼是Easy Open full Image?
Easy Open full Image是由shivalwolf開發的Chrome擴展程式,該擴展的主要功能是“A context menu option to open in a new tab images hosted on googleusercontent/tumblr in full size useful for G+/picasa and tumblr.”。
擴展截圖
下載Easy Open full Image擴展crx文件
下載Easy Open full Image擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
I was finding myself getting annoyed when opening up images from Google+ they would be smaller then actual size and hard to save. You had to open the image in a new tab and then modify the URL to save the full image. This Extension simply removes the resizing option from the URL and allows you to open up G+ and Picasa images in new windows. Now also does tumblr, assumes max size image exists. sometimes this will fail. Update so that it does not provide the context menu on images proxied via https://images1-focus-opensocial.googleusercontent.com/gadgets/proxy? Update 2.6 - 2017-01-19 Fixed so it works with the new google plus. Updated 2.71 - 2017-06-23 Updated to use _raw for tumblr instead of _1280 for images when available. Update 2.71 to 3.10 - 2017-09-21 Accidentally screwed up version numbering. No versions between these updates update 3.10 - 2017-09-21 Fixed google+ images not loading with the recent update
擴展基本資訊
名稱 | |
ID | fphbkhojdlikiofpminindlcndjikjkn |
官方網址 | https://chrome.google.com/webstore/detail/easy-open-full-image/fphbkhojdlikiofpminindlcndjikjkn |
簡介 | A context menu option to open in a new tab images hosted on googleusercontent/tumblr in full size useful for G+/picasa and tumblr. |
檔案大小 | 7.84 KB |
安裝次數 | 790 |
目前版本 | 3.10 |
更新時間 | 2017-09-21 |
上架時間 | 2017-09-21 |
評分 | 4.40/5 共 20 次評分 |
開發者 | shivalwolf |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Easy Open full Image", "version": "3.10", "manifest_version": 2, "description": "A context menu option to open in a new tab images hosted on googleusercontent\/tumblr in full size useful for G+\/picasa and tumblr.", "background": { "scripts": [ "background.js" ] }, "permissions": [ "tabs", "contextMenus" ], "content_scripts": [ { "matches": [ "http:\/\/*.googleusercontent.com\/*", "https:\/\/*.googleusercontent.com\/*", "http:\/\/*.tumblr.com\/*", "https:\/\/*.tumblr.com\/*" ], "js": [ "background.js" ] } ], "icons": { "16": "16icon.png", "48": "48icon.png", "128": "128icon.png" } } |