Geocaching.com Friends Logs
Shows your friends logs at the top of the window, so you don't need to View logbook>friends logs on every cache.
Geocaching.com Friends Logsとは何ですか?
Geocaching.com Friends Logsはrfsbrazによって開発されたChromeの拡張機能で、その主な機能は「Shows your friends logs at the top of the window, so you don't need to View logbook>friends logs on every cache.」です。
拡張機能のスクリーンショット
Geocaching.com Friends Logs拡張機能のCRXファイルをダウンロード
Geocaching.com Friends Logs拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Loads your friends logs at the top of every cache listing, so you know which friends have visited and what was their experience! 拡張機能の基本情報
| 名前 | |
| ID | bgildcbomgimjfoblhlhmaehaeieeaam |
| 公式URL | https://chromewebstore.google.com/detail/geocachingcom-friends-log/bgildcbomgimjfoblhlhmaehaeieeaam |
| 説明 | Shows your friends logs at the top of the window, so you don't need to View logbook>friends logs on every cache. |
| ファイルサイズ | 59.76 KB |
| インストール数 | 234 |
| 現在のバージョン | 1.0.1 |
| 最終更新日 | 2015-12-29 |
| 公開日 | 2015-12-29 |
| 評価 | 3.50/5 合計 2 レビュー |
| 開発者 | rfsbraz |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/rfsbraz/Geocaching.com-Friends-Logs |
| ヘルプページのURL | https://github.com/rfsbraz/Geocaching.com-Friends-Logs |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Geocaching.com Friends Logs",
"description": "Shows your friends logs at the top of the window, so you don't need to View logbook>friends logs on every cache.",
"version": "1.0.1",
"content_scripts": [
{
"matches": [
"https:\/\/www.geocaching.com\/seek\/cache_details.aspx?wp=GC*",
"https:\/\/*.geocaching.com\/seek\/cache_details.aspx?wp=GC*"
],
"css": [
"square.css",
"style.css"
],
"js": [
"jquery-1.11.1.min.js",
"icheck.min.js",
"init.js",
"content_script.js"
]
}
],
"permissions": [
"storage"
],
"web_accessible_resources": [
"\/inject.js"
],
"icons": {
"16": "icon16.png",
"48": "icon48.png"
},
"browser_action": {
"default_icon": "icon48.png",
"default_popup": "popup.html"
}
} | |