Exify
EXIF viewer for the modern Web
什麼是Exify?
Exify是由thesilentman開發的Chrome擴展程式,該擴展的主要功能是“EXIF viewer for the modern Web”。
擴展截圖
下載Exify擴展crx文件
下載Exify擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Show EXIF info by hovering the mouse over a photo.
Main features:
- Default info: Equipment (Camera + Lens), Focal Length, Aperture, Exposure, ISO
- Optional info: Date Taken, Location (via Google Maps), Metering Mode, Exposure Mode, Exposure Bias, Software
- Histogram (via the settings dialog)
Settings:
- Use compact overlay size
- Toggle the overlay on or off for the current site
- Control whether the overlay should be on or off by default
This add-on is clean of any tracking or ads. 擴展基本資訊
| 名稱 | |
| ID | llhmhhnpmiikplpnkmbgbgmlenleecle |
| 官方網址 | https://chromewebstore.google.com/detail/exify/llhmhhnpmiikplpnkmbgbgmlenleecle |
| 簡介 | EXIF viewer for the modern Web |
| 檔案大小 | 362 KB |
| 安裝次數 | 2,510 |
| 目前版本 | 2.0.26 |
| 更新時間 | 2023-11-22 |
| 上架時間 | 2020-06-08 |
| 評分 | 4.08/5 共 12 次評分 |
| 開發者 | thesilentman |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://www.exify.io |
| 說明頁面URL | https://www.exify.io |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Exify",
"version": "2.0.26",
"description": "EXIF viewer for the modern Web",
"homepage_url": "https:\/\/www.exify.info\/",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"content.js"
],
"css": [
"content.css"
]
}
],
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"web_accessible_resources": [
"icons\/*"
],
"permissions": [
"*:\/\/*\/*",
"storage",
"activeTab"
],
"content_security_policy": "script-src 'self'; object-src 'self'",
"manifest_version": 2
} | |