FantasyKeep

FantasyPass integration for browsers using KeePassHttp

Τι είναι το FantasyKeep;

Το FantasyKeep είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον chengkai711, και η κύρια λειτουργία του είναι "FantasyPass integration for browsers using KeePassHttp".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης FantasyKeep

Λήψη αρχείων επέκτασης FantasyKeep σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        FantasyPass remote filling browser plug-in of keepass, can cooperate with FantasyPass to fill the account and password within the LAN, and support shortcut keys and one-time password filling, only need to open the mobile phone, let unlock FantasyPass software, you can fill the web page. This client is developed on open source software and the source code is open source. If you have any questions, please feel free to feedback. The browser plug-in will also be continuously updated, welcome to use the experience!  

If there are more questions please refer to the source code!
FantasyPass (close) can be downloaded at https://apps.apple.com/cn/app/fantasypass-ikeepass/id1357961740, to cooperate to use!

FantasyPass(奇密)的Keepass远程填充浏览器插件,可以配合FantasyPass进行局域网内的填充账号和密码,并且支持快捷键和一次性密码填充,只需要打开手机,让后解锁FantasyPass软件,即可对网页进行填充了。这个客户端时是在基于开源软件开发,并且源码也是开源的,如果有任何问题欢迎反馈。该浏览器插件也会进行持续更新,欢迎大家使用体验!

如果有更多问题请参考源码!
FantasyPass(奇密)可以在 https://apps.apple.com/cn/app/fantasypass-ikeepass/id1357961740 下载,进行配合使用!                    

Βασικές Πληροφορίες Επέκτασης

Όνομα FantasyKeep FantasyKeep
ID kidanpgminamgngjjdpdhlfgicjhlfdo
Επίσημο URL https://chromewebstore.google.com/detail/fantasykeep/kidanpgminamgngjjdpdhlfgicjhlfdo
Περιγραφή FantasyPass integration for browsers using KeePassHttp
Μέγεθος Αρχείου 507 KB
Αριθμός Εγκαταστάσεων 245
Τρέχουσα Έκδοση 1.0.0
Τελευταία Ενημέρωση 2019-11-22
Ημερομηνία Δημοσίευσης 2019-11-20
Αξιολόγηση 4.50/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής chengkai711
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://www.fantasypass.cn
Διεύθυνση URL της Σελίδας Βοήθειας http://www.fantasypass.cn
Υποστηριζόμενες Γλώσσες en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "FantasyKeep",
    "version": "1.0.0",
    "manifest_version": 2,
    "default_locale": "en",
    "description": "FantasyPass integration for browsers using KeePassHttp",
    "icons": {
        "16": "icons\/keepass_16x16.png",
        "48": "icons\/keepass_48x48.png",
        "128": "icons\/keepass_128x128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "icons\/19x19\/icon_normal_blue_19x19.png",
            "38": "icons\/keepass_38x38.png"
        },
        "default_title": "FantasyKeep",
        "default_popup": "popups\/popup.html"
    },
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": true
    },
    "background": {
        "scripts": [
            "browser-polyfill.min.js",
            "background\/aes.js",
            "background\/cryptoHelpers.js",
            "background\/utf8.js",
            "background\/utils.js",
            "background\/keepass.js",
            "background\/httpauth.js",
            "background\/browserAction.js",
            "background\/page.js",
            "background\/event.js",
            "background\/init.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "exclude_matches": [
                "*:\/\/*\/*.xml",
                "*:\/\/*\/*.xsd"
            ],
            "js": [
                "browser-polyfill.min.js",
                "jquery-3.2.1.min.js",
                "jquery-ui.min.js",
                "kphc.js"
            ],
            "css": [
                "jquery-ui.min.css",
                "bootstrap-btn.css",
                "kphc.css"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "commands": {
        "fill-username-password": {
            "description": "Insert username + password",
            "suggested_key": {
                "default": "Alt+Shift+U",
                "mac": "Alt+Shift+U"
            }
        },
        "fill-password": {
            "description": "Insert a password",
            "suggested_key": {
                "default": "Alt+Shift+P",
                "mac": "Alt+Shift+P"
            }
        },
        "fill-otp-password": {
            "description": "Insert a otp password",
            "suggested_key": {
                "default": "Alt+Shift+T",
                "mac": "Alt+Shift+T"
            }
        },
        "save-credential": {
            "description": "Save the credentials entry",
            "suggested_key": {
                "default": "Alt+Shift+S",
                "mac": "Alt+Shift+S"
            }
        }
    },
    "web_accessible_resources": [
        "jquery.min.map",
        "icons\/key_16x16.png",
        "icons\/key_24x24.png",
        "images\/*"
    ],
    "permissions": [
        "activeTab",
        "contextMenus",
        "clipboardWrite",
        "storage",
        "tabs",
        "webRequest",
        "webRequestBlocking",
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "http:\/\/localhost:19455\/",
        "http:\/\/localhost:32947\/",
        "http:\/\/localhost\/",
        "https:\/\/raw.github.com\/"
    ]
}