SARA

Easiler or automatically fill out web forms (most like job application forms. But other's work too).

SARA là gì?

SARA là một tiện ích mở rộng Chrome được phát triển bởi WKLaume, và tính năng chính của nó là "Easiler or automatically fill out web forms (most like job application forms. But other's work too).".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng SARA

Tải xuống các tệp mở rộng SARA dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Fill (or autofill) webforms easily. The extension will recognize forms fields by their attributes and and fill the fields with the value from the settings. Great for pages online job applications that ask you to fill out the same things over and over or fill out things that are already in the resume that's already uploaded. Can also work for anyone that spend a lot of time filling any web form or constantly paste the same values over and over again.

*WARNING: DO NOT SAVE PASSWORDS INTO THIS PROGRAM. IT IS NOT MEANT FOR ANY DATA THAT ARE MEANT TO BE ENCRYPTED. IF IT IS INFO YOU DON'T FEEL COMFORTABLE IN SHARING WITH JOB RECRUITERS, INTERVIEWERS OR THE HR DEPARTMENT OF ANOTHER COMPANY, DO NOT SAVE IT HERE.*

-version 1.7:
Got a request for light mode. Added the functionality.
-version 1.6:
Added a check for the path that the element was right-clicked on.
-version 1.5:
Event Fill:
Some forms require more than just having the field filled out, they require javascript events to be fired (usually happens via human input.) for them to recognize the field is filled. Added the "Event Fill" option to address those forms. For new users, this should be turned on by default. For users upgrading, this will need to be manually turned on.
Minor changes:
Removed some console.log()'s that shouldn't be there.
Made it so that when pasting via the right-click menu, even if the paste didn't happen successfully, it'll still be copied into your clipboard.
-version 1.4:
Style change:
In settings, when you the fields to add a new entry, the width didn't transition along with min and max width in css, leading to a bad feeling in seeing it animated. Fixed that.
-version: 1.3
New Feature:
Quick Copy Floating Panel.
When turned on, each page that you go to will have a floating panel of data. By mousing over it, it'll automatically copy said data into your clipboard for faster copy and pasting. Perfect for those forms that ask you to enter in work history despite already uploaded your resume.
- version: 1.2
Bug fixes: 
1) Found and fixed bug where page reloads will add new event listeners on background script.
2) Fixed bug where importing settings won't refresh profiles list on settings page.
- version: 1.1
Minor update to increase readability as to what is pasted as part of the console. Removed extraneous output accidentally left over.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên SARA SARA
ID ngfbcebnohblbjjebegogmncfodnondm
URL Chính Thức https://chromewebstore.google.com/detail/sara/ngfbcebnohblbjjebegogmncfodnondm
Mô tả Easiler or automatically fill out web forms (most like job application forms. But other's work too).
Kích Thước Tệp 410 KB
Số Lần Cài Đặt 15
Phiên Bản Hiện Tại 1.7
Cập Nhật Lần Cuối 2022-11-20
Ngày Phát Hành 2021-05-23
Nhà Phát Triển WKLaume
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/sleepingkirby/sara/issues
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SARA",
    "version": "1.7",
    "description": "Easiler or automatically fill out web forms (most like job application forms. But other's work too).",
    "permissions": [
        "storage",
        "declarativeContent",
        "activeTab",
        "tabs",
        "webNavigation",
        "contextMenus"
    ],
    "icons": {
        "16": "icons\/logo16.png",
        "64": "icons\/logo64.png",
        "96": "icons\/logo96.png",
        "128": "icons\/logo128.png"
    },
    "browser_action": {
        "default_icon": {
            "96": "icons\/logo96.png"
        },
        "default_title": "SARA",
        "default_popup": "popup\/menu.html"
    },
    "options_page": "options\/settings.html",
    "background": {
        "scripts": [
            ".\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/content_scripts\/main.js"
            ],
            "all_frames": true,
            "run_at": "document_end"
        }
    ]
}