Docomplete
This extension re-enables autocomplete for password fields on websites that intentionally disable it (autocomplete=off).
什麼是Docomplete?
Docomplete是由martin開發的Chrome擴展程式,該擴展的主要功能是“This extension re-enables autocomplete for password fields on websites that intentionally disable it (autocomplete=off).”。
擴展截圖
下載Docomplete擴展crx文件
下載Docomplete擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
A Chrome extension to re-enable password completion on websites that intentionally disable it (`autocomplete=off`).
Disabling autocomplete is touted as a security feature, but in reality it just forces users to re-use the same username/password combination all over the place, as no user can remember 20 different passwords for minor sites he/she visits every 3 months.
This extension runs entirely in the background and has no user interface. It enables autocompleting passwords for many forms, but does not work for login forms submitted through AJAX (that's a Chrome limitation/feature).
The source code is available at https://github.com/mprobst/docomplete. 擴展基本資訊
| 名稱 | |
| ID | onlplldgmkgpoangfokimmikjheamnfb |
| 官方網址 | https://chrome.google.com/webstore/detail/docomplete/onlplldgmkgpoangfokimmikjheamnfb |
| 簡介 | This extension re-enables autocomplete for password fields on websites that intentionally disable it (autocomplete=off). |
| 檔案大小 | 3.45 KB |
| 安裝次數 | 77 |
| 目前版本 | 1.0 |
| 更新時間 | 2013-05-20 |
| 上架時間 | 2013-05-20 |
| 評分 | 3.67/5 共 3 次評分 |
| 開發者 | martin |
| 付費類型 | free |
| 擴展官網 | https://github.com/mprobst/docomplete |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Docomplete",
"description": "This extension re-enables autocomplete for password fields on websites that intentionally disable it (autocomplete=off).",
"version": "1.0",
"permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"docomplete.js"
],
"all_frames": true
}
]
} | |