EXIF Viewer Classic

Quickly access EXIF data of your photos

EXIF Viewer Classicคืออะไร?

EXIF Viewer Classic เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Rodrigue และคุณลักษณะหลักของมันคือ "Quickly access EXIF data of your photos"

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย EXIF Viewer Classic

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

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

                        Quick access to EXIF data of any image you view in Google Chrome

Just right-click on any image on the web contains EXIF data and you will see the dialog with EXIF properties of related image

Also, supports Template, Cache, Exclude and more features in Options page.

==== QUESTIONS ====
"Read and change all your data on the websites you visit"?
- "Read"? To get the details/properties of all images/pictures on any website
- "Change"? To display the EXIF data by changing/displaying the attributes of those images

==== UPDATES ====
2.5
- Added new features and crushed some bugs
- Added notification system to better co-ordinate with users

2.4.4
- Fixed previous bug of hiding overlay information

2.4.3
* Fixed few bugs
* Added useful notification features
* ISSUE: We just noticed an issue with on-hover image details.  We are currently working on it and release the ASAP!!

2.4.2
* Fix the "ExposureBias" parse bug

2.4.1
* Fixed bugs

2.4.0
* Added close button to remove info bar

2.3.9
* Remove debug outputs

2.3.8
* Added FR languages

2.3.7
* Fixed GPS parse bug.
* Update Japanese languages

2.3.5
* Fixed template parse bugs
* Change icon design

2.3.2
* Fixed gps parse bug. (Thanks Guzzi)

2.3
* Now you can disable extension on some site by keyword

2.2.1
* Fixed too much cache entries will crash the extension
* Fixed bug makes extension crash on chrome mac

2.2
* Cache feature comes back, with better performance:D
* Adds GPS Support. "GPS" link will be added on tooltip if GPS data is available

2.1.2
* Cache feature has been disabled

2.1
* Added supported tags in options page

2.0
* Added notify when extension first installed
* Fixed bugs

1.4
* Now supports view exif infomation on dynamic loaded image

1.3
* Fixed can not download images from site which referrer protected
* Improved EXIF parsing speed, now you can almost immediately get EXIF after image downloaded
* Added EXIF info Cache to avoid duplication EXIF parsing. You can also set the cache in options page to get faster parsing speed (default 100 records)
* Fixed can not parsing EXIF in pages which have too much images

1.2
* Fixed relative path can not fetch exif data
* Added zh-TW, ja Language supports

1.1
Fixed viewing photo page of kaixin001.com makes page crash

1.0
Initial release


### References ###
Visit http://exifviewers.com/, for more details, updates and offline extension in case any issue with Chrome Store.  You can reach us directly at http://tiny.cc/appshelp                    

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

ชื่อ EXIF Viewer Classic EXIF Viewer Classic
ID nafpfdcmppffipmhcpkbplhkoiekndck
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/exif-viewer-classic/nafpfdcmppffipmhcpkbplhkoiekndck
คำอธิบาย Quickly access EXIF data of your photos
ขนาดไฟล์ 192 KB
จำนวนการติดตั้ง 106,101
เวอร์ชันปัจจุบัน 2.5.0
อัปเดตครั้งล่าสุด 2019-10-27
วันที่เผยแพร่ 2019-10-26
คะแนน 3.47/5 รวมทั้งหมด 640 คะแนน
ผู้พัฒนา Rodrigue
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://exifviewers.com/
URL หน้าช่วยเหลือ http://exifviewers.com/
URL หน้านโยบายความเป็นส่วนตัว http://tiny.cc/appsprivacy
ภาษาที่รองรับ en,fr,zh-CN,zh-TW,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "EXIF Viewer Classic",
    "version": "2.5.0",
    "description": "Quickly access EXIF data of your photos",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "options_page": "options.html",
    "background": {
        "page": "service.html",
        "persistent": true
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "EXIF Viewer - Browser photos and get its EXIF data"
    },
    "default_locale": "en",
    "content_scripts": [
        {
            "all_frames": false,
            "css": [
                "exifviewerui.css"
            ],
            "js": [
                "jquery-1.9.1.js",
                "exifviewerutil.js",
                "exifviewerconfig.js",
                "exifviewerui.js",
                "exifviewer.js",
                "common.js",
                "db.js",
                "tracking.js",
                "notif.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/www.google-analytics.com; object-src 'self'"
}