Local Image File Viewer

Next and previous buttons for viewing images in local file URLs to browse folders

Local Image File Viewerคืออะไร?

Local Image File Viewer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sam Larison และคุณลักษณะหลักของมันคือ "Next and previous buttons for viewing images in local file URLs to browse folders"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Local Image File Viewer

ดาวน์โหลดไฟล์ส่วนขยาย Local Image File Viewer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Ever open a file:/// image from your local file system explorer only to find that you want to view the next and previous image in the directory with ease?

Well now you can.  Install the extension and visit it's options page for more details about how it works!

chrome-extension://lhlckkgdiojkapplglfeomlkjllphilo/about.html

Note - you have to manually allow access to file URLs once the extension is installed, similar to how you might allow extensions in incognito mode. 

Enjoy!

Fullscreen Slideshow Steps:
1) From options set body CSS to background-color:black;
2) Consider checking the option to reduce flicker if URL bar matters not
3) On windows press F11 to enter fullscreen, on mac press Command+Shift+F

( note: version 0.19 contains a bug where the save button will seem to save formats other than PNG.  It does not - all files saved with this version are PNGs.  Version 0.20 will save JPGs in addition to PNGs. )                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Local Image File Viewer Local Image File Viewer
ID lhlckkgdiojkapplglfeomlkjllphilo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/local-image-file-viewer/lhlckkgdiojkapplglfeomlkjllphilo
คำอธิบาย Next and previous buttons for viewing images in local file URLs to browse folders
ขนาดไฟล์ 559 KB
จำนวนการติดตั้ง 27,607
เวอร์ชันปัจจุบัน 0.0.0.41
อัปเดตครั้งล่าสุด 2019-11-26
วันที่เผยแพร่ 2019-11-23
คะแนน 4.36/5 รวมทั้งหมด 154 คะแนน
ผู้พัฒนา Sam Larison
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว http://vidsbee.com/ColorPick/Privacy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "description": "Next and previous buttons for viewing images in local file URLs to browse folders",
    "name": "Local Image File Viewer",
    "content_scripts": [
        {
            "js": [
                "Cr.js",
                "common.js",
                "localfiles.user.js"
            ],
            "run_at": "document_start",
            "matches": [
                "file:\/\/\/*"
            ]
        }
    ],
    "options_page": "about.html",
    "background": {
        "scripts": [
            "common.js",
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": {
            "19": "img\/dim\/icon19.png",
            "38": "img\/dim\/icon38.png"
        },
        "default_title": "Local Image Viewer",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "img\/icon16.png",
        "32": "img\/icon32.png",
        "48": "img\/icon48.png",
        "64": "img\/icon64.png",
        "128": "img\/icon128.png"
    },
    "web_accessible_resources": [
        "localfiles_print.css",
        "img\/arrow_left.png",
        "img\/arrow_right.png",
        "img\/arrow_up.png",
        "img\/zoom_in.png",
        "img\/zoom_out.png",
        "img\/play.png",
        "img\/pause.png",
        "img\/ffwd.png",
        "img\/r_right.png",
        "img\/r_left.png",
        "img\/save.png",
        "img\/edit.png",
        "img\/fillscreen.png",
        "img\/gear.png",
        "img\/thumbs.png",
        "about.html"
    ],
    "permissions": [
        "tabs",
        "webNavigation",
        "storage",
        ""
    ],
    "version": "0.0.0.41"
}