Extreme AutoComplete

An extension that records locally the user input data and provides it as auto complete option in future typings.

Extreme AutoCompleteคืออะไร?

Extreme AutoComplete เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "An extension that records locally the user input data and provides it as auto complete option in future typings."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Extreme AutoComplete

ดาวน์โหลดไฟล์ส่วนขยาย Extreme AutoComplete ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Features:

    * Auto complete from old sentences you typed anywhere.
    * Results are getting shown inside a draggable panel.
    * The extension remembers the panel's position for every site.
    * Data is saved locally using chrome secured API and never being sent anywhere.

Hotkeys:

'Alt' - moving focus to the panel in order to choose your prefered sentence.
'up 'down' arrows - once you moved focus using 'Alt' just choose your option with the arrows.
'esc' - hides the panel.

More Information:

This extension provides an auto complete ability on any site(even on Facebook, Twitter, Whatsapp and Gmail).
The extension saves in local database the user's old sentences and knows to suggest him the correct sentences according to his typing.

Even if the user is typing paragraphs, like long mails or articles the extension knows to provide auto complete to any of the sentences separately and will not process the whole paragraph.

It's important to emphasize that the extension doesn't send any user data anywhere. It's all about keeping it safe simple and helping people.  

Usage example:

If the user types: "Hi guys, welcome to my show" and "Hi guys, welcome to my home"
then for any future typing of "Hi guys" or "Hi guys, welcome"(or any other sub string) the extension will open a panel containing the corresponding 2 sentences from above.

I think that this feature is a MUST for bloggers/journalists and anyone who write a lot on the computer. 

**** Please let me know if you're having issues with it so I could fix them ASAP ****

You can contact me directly at [email protected].                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Extreme AutoComplete Extreme AutoComplete
ID ojmdbohkpjcojhdfmbcgopfhjhackkli
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/extreme-autocomplete/ojmdbohkpjcojhdfmbcgopfhjhackkli
คำอธิบาย An extension that records locally the user input data and provides it as auto complete option in future typings.
ขนาดไฟล์ 184 KB
จำนวนการติดตั้ง 447
เวอร์ชันปัจจุบัน 1.0.4
อัปเดตครั้งล่าสุด 2017-02-23
วันที่เผยแพร่ 2017-02-23
คะแนน 3.50/5 รวมทั้งหมด 10 คะแนน
ผู้พัฒนา Unknown
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "description": "An extension that records locally the user input data and provides it as auto complete option in future typings.",
    "name": "Extreme AutoComplete",
    "version": "1.0.4",
    "web_accessible_resources": [
        "\/js\/shadow.html",
        "\/images\/close.png",
        "\/css\/jquery-ui.css",
        "\/css\/pretty_table.css",
        "\/css\/selection_bubble.css"
    ],
    "background": {
        "scripts": [
            "\/js\/analytics.js",
            "\/js\/lib\/js_suffix_trie.js",
            "\/js\/lib\/data_manager.js",
            "\/js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "\/css\/jquery-ui.css",
                "\/css\/pretty_table.css",
                "\/css\/selection_bubble.css"
            ],
            "js": [
                "\/js\/lib\/data_manager.js",
                "\/js\/lib\/jquery-3.1.1.min.js",
                "\/js\/lib\/jquery-ui.js",
                "\/js\/content.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Extreme Auto Complete",
        "default_icon": "\/images\/icon.png"
    },
    "permissions": [
        "tabs",
        "storage",
        "unlimitedStorage"
    ]
}