TextEditAid

Edit (or just filter) the currently selected textarea using a web request.

TextEditAidคืออะไร?

TextEditAid เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Wayne Davison และคุณลักษณะหลักของมันคือ "Edit (or just filter) the currently selected textarea using a web request."

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

screenshot

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

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

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

                        This extension allows you to edit (or just filter) the contents of a textarea on a web page.  Since Chrome does not allow the running of an external program directly, this extension instead makes an ajax call to a web server, which can start up a graphical editor, or perform any kind of filtering you desire.  The URL that is used is configurable in the options.

When a textarea receives the focus (e.g. if you click in one), the icon will get a click action (indicated by the mouse-over title text).  When left-clicked, an ajax request will process the currently-selected textarea and update the value when the request is done (e.g. when the editor exits). You can also assign a keystroke to use to activate the editor (I like Alt-Enter), which allows you to leave the extension's icon unpinned.

Change Log:

1.0.8 - Renamed TextAid to TextEditAid & tweaked for newer chrome.
1.0.7 - Tweaked the OK/Cancel buttons on the options page.
1.0.6 - A fix for Mac OS X that made clicking on the icon not work.
1.0.5 - Include the status text in the failure alert so it is clearer what needs to be fixed.
1.0.4 - Avoid spurious failure alerts after a successful update. Added support for http basic auth (you'll need an updated version of edit-server or whatever script you're using).
1.0.3 - Added a configurable keyboard shortcut (defaults to disabled).
1.0.2 - Fixed a newly-introduced bug with the field editing.
1.0.1 - Changed event capturing method so that focusing any textarea shows the clickable icon.

The edit-server script that I wrote (in perl) for use with TextEditAid:

http://opencoder.net/edit-server

Another option are the servers written for the emacs_chrome project (the python one worked fine when last I looked at it, though it was only single-threaded).  You could also supply your own server script, or run a CGI under a normal web server. See the options page for more information on the POST request used.                    

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

ชื่อ TextEditAid TextEditAid
ID ppoadiihggafnhokfkpphojggcdigllp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/texteditaid/ppoadiihggafnhokfkpphojggcdigllp
คำอธิบาย Edit (or just filter) the currently selected textarea using a web request.
ขนาดไฟล์ 29.87 KB
จำนวนการติดตั้ง 933
เวอร์ชันปัจจุบัน 1.0.8
อัปเดตครั้งล่าสุด 2021-07-07
วันที่เผยแพร่ 2012-07-03
คะแนน 4.25/5 รวมทั้งหมด 40 คะแนน
ผู้พัฒนา Wayne Davison
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://opencoder.net/privacy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "TextEditAid",
    "version": "1.0.8",
    "description": "Edit (or just filter) the currently selected textarea using a web request.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "page_action": [],
    "content_scripts": [
        {
            "js": [
                "page-prep.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "options_page": "options.html",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "128": "images\/icon-128.png",
        "48": "images\/icon-48.png",
        "32": "images\/icon-32.png",
        "16": "images\/icon-16.png"
    }
}