Test Observer - The Observatron
The Observatron observes things in the browser
Test Observer - The Observatronคืออะไร?
Test Observer - The Observatron เป็นส่วนขยายของ Chrome ที่พัฒนาโดย eviltesterapps และคุณลักษณะหลักของมันคือ "The Observatron observes things in the browser"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Test Observer - The Observatron
ดาวน์โหลดไฟล์ส่วนขยาย Test Observer - The Observatron ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
The Observatron supports Exploratory testing by taking screenshots and creating .mhtml files as you test. It also logs urls and form submissions. All logging is performed in your downloads folder so that you have control over the information. No information is sent to external servers. Logging and screenshots saved when: - when a page loads - when a page updates - when you double click on the page - when you resize the page - when you scroll through the page - when you submit a form All of the above can be switched on and off from the options. All images are stored in your downloads folder so you can easily find them and see them being saved. You can also save logs of: bugs, todos, questions, or any custom information. To do this: - from the context menu choose "Take Note" - in the dialog, write your note - you will be asked if you want a screenshot with that - the note and optional screenshot will be saved to your downloads Notes take the format: - "? question text to output as the note" - "! description of the bug to output as the note" - "- todo text to output" - "@type text to output as custom type" When you save a screenshot with the note screenshot it will have `_note_noteid` at the end of the filename. This can help you cross reference screenshots to notes, although the timestamping should mean that the screenshot is the next file saved after the note. e.g. "obs_2019-02-20-11-32-57-314-screenshot-1201x1104_note_1550662375417.jpg" This extension is open source. Copyright 2019 Compendium Developments Ltd, Alan Richardson
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Test Observer - The Observatron |
ID | gdiemnbjpblghfbejnbohdnnmodbknoe |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/test-observer-the-observa/gdiemnbjpblghfbejnbohdnnmodbknoe |
คำอธิบาย | The Observatron observes things in the browser |
ขนาดไฟล์ | 29.66 KB |
จำนวนการติดตั้ง | 52 |
เวอร์ชันปัจจุบัน | 0.92 |
อัปเดตครั้งล่าสุด | 2019-03-01 |
วันที่เผยแพร่ | 2019-02-26 |
ผู้พัฒนา | eviltesterapps |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/eviltester/observatron |
URL หน้านโยบายความเป็นส่วนตัว | https://www.eviltester.com/page/privacy |
ภาษาที่รองรับ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Test Observer - The Observatron", "version": "0.92", "description": "The Observatron observes things in the browser", "background": { "persistent": true, "scripts": [ "javascript\/observatron_options.js", "javascript\/context_menu.js", "javascript\/filenames.js", "javascript\/background.js" ] }, "commands": { "log-a-note": { "suggested_key": { "default": "Ctrl+Shift+L", "mac": "Command+Shift+L" }, "description": "log a note" } }, "browser_action": { "default_icon": "icons\/red.png", "default_title": "Engage The Observatron" }, "icons": { "16": "icons\/red-16x16.png", "48": "icons\/red-48x48.png", "128": "icons\/red-128x128.png" }, "options_page": "options\/options_page.html", "content_scripts": [ { "js": [ "javascript\/screenshotter.js" ], "run_at": "document_start", "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "permissions": [ "activeTab", "downloads", "webNavigation", "pageCapture", " |