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 |
| 公式URL | 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 |
| Eメール | [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
} | |