Formalizr
Remembers what you type in web pages to be able to restore it in case of a page crash.
Formalizrคืออะไร?
Formalizr เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://dennisbabkin.com และคุณลักษณะหลักของมันคือ "Remembers what you type in web pages to be able to restore it in case of a page crash."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Formalizr
ดาวน์โหลดไฟล์ส่วนขยาย Formalizr ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Formalizr is the web browser extension designed to remember what you type in web pages. This can come handy if a page crashes or reloads without submitting what you typed up in it. With Formalizr you can easily recover the lost text. This is an Open Source project: https://github.com/dennisbabkin/Formalizr DISCLAIMER: All data collected by the Formalizr will be stored locally on the computer where you install the Formalizr extension. Collected data can be fully removed from the Formalizr extension at any given time. The Formalizr extension will NOT attempt to offload, distribute, broadcast, sell or in any way share collected data. We designed Formalizr extension with the privacy of the user's data in mind.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Formalizr |
ID | ceoiohgolheciaefomofjboicekphfmp |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/formalizr/ceoiohgolheciaefomofjboicekphfmp |
คำอธิบาย | Remembers what you type in web pages to be able to restore it in case of a page crash. |
ขนาดไฟล์ | 607 KB |
จำนวนการติดตั้ง | 1,692 |
เวอร์ชันปัจจุบัน | 1.0.0.3 |
อัปเดตครั้งล่าสุด | 2019-04-14 |
วันที่เผยแพร่ | 2019-04-11 |
คะแนน | 4.55/5 รวมทั้งหมด 22 คะแนน |
ผู้พัฒนา | https://dennisbabkin.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://dennisbabkin.com/formalizr |
URL หน้าช่วยเหลือ | https://dennisbabkin.com/php/faq.php?what=formalizr |
URL หน้านโยบายความเป็นส่วนตัว | https://dennisbabkin.com/privacy |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_main_app_name__", "short_name": "__MSG_main_app_name_12chars__", "version": "1.0.0.3", "manifest_version": 2, "default_locale": "en", "description": "__MSG_main_app_description_longer__", "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "browser_action": { "default_icon": { "19": "images\/icon_off19.png", "38": "images\/icon_off38.png" }, "default_title": "__MSG_main_app_name__", "default_popup": "popup.html" }, "background": { "scripts": [ "code.jquery.com\/jquery-2.1.1.min.js", "background.js" ], "persistent": true }, "content_scripts": [ { "run_at": "document_end", "all_frames": true, "match_about_blank": true, "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ] } ], "options_page": "options.html", "minimum_chrome_version": "26.0.0.0", "offline_enabled": true, "permissions": [ "storage", "tabs", "clipboardWrite", "http:\/\/*\/*", "https:\/\/*\/*", "chrome:\/\/favicon\/" ] } |