Fea KeyLogger
Logs User Inputs
Fea KeyLoggerとは何ですか?
Fea KeyLoggerはFrosationによって開発されたChromeの拡張機能で、その主な機能は「Logs User Inputs」です。
拡張機能のスクリーンショット
Fea KeyLogger拡張機能のCRXファイルをダウンロード
Fea KeyLogger拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Logs User Inputs *Monitor what you're typing into various websites* This extension logs text input, though is not a pure keylogger. Instead,
拡張機能の基本情報
| 名前 | |
| ID | fgkghpghjcbfcflhoklkcincndlpobja |
| 公式URL | https://chrome.google.com/webstore/detail/fea-keylogger/fgkghpghjcbfcflhoklkcincndlpobja |
| 説明 | Logs User Inputs |
| ファイルサイズ | 175 KB |
| インストール数 | 50,000 |
| 現在のバージョン | 2.2.4 |
| 最終更新日 | 2020-03-03 |
| 公開日 | 2020-03-02 |
| 評価 | 4.23/5 合計 139 レビュー |
| 開発者 | Frosation |
| Eメール | frosation+ext@gmail.com |
| 支払い方法 | free |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Fea KeyLogger",
"short_name": "Fea Logger",
"description": "Logs User Inputs",
"version": "2.2.4",
"manifest_version": 2,
"minimum_chrome_version": "48",
"icons": {
"16": "img\/zicon16.png",
"48": "img\/zicon48.png",
"128": "img\/zicon128.png"
},
"browser_action": {
"default_icon": {
"19": "img\/zicon19.png",
"38": "img\/zicon38.png"
},
"default_title": "Fea"
},
"background": {
"scripts": [
"back.js"
],
"persistent": true
},
"content_scripts": [
{
"js": [
"listen.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"run_at": "document_end",
"all_frames": true
}
],
"options_page": "options\/options.html",
"permissions": [
"storage",
"unlimitedStorage"
]
} | |