Credentials Autofill
Enable auto fill credentials
Credentials Autofill क्या है?
Credentials Autofill Aniketos द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Enable auto fill credentials"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Credentials Autofill एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension allows you to save credentials for hosts. Each form input containing "user" or "password" in its name attribute will be filled with these data after focus event on form inputs appropriately.
एक्सटेंशन की मूल जानकारी
नाम | Credentials Autofill |
ID | kkifkadkcbpkfngiamhcobgeikpnbnel |
आधिकारिक URL | https://chromewebstore.google.com/detail/credentials-autofill/kkifkadkcbpkfngiamhcobgeikpnbnel |
विवरण | Enable auto fill credentials |
फ़ाइल का आकार | 160 KB |
स्थापना संख्या | 55 |
वर्तमान संस्करण | 1.0.0.5 |
अंतिम अपडेट | 2018-10-15 |
प्रकाशन तिथि | 2018-10-15 |
डेवलपर | Aniketos |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Credentials Autofill", "version": "1.0.0.5", "description": "Enable auto fill credentials", "browser_action": { "default_icon": "icons\/icon16_disabled.png", "default_title": "Auto-fill credentials", "default_popup": "popup.html" }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "event_script.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "jquery\/jquery-3.2.0.min.js", "content_script.js" ] } ], "permissions": [ "tabs", "*:\/\/*\/*" ] } |