Testing Taxi Assistant

QA/Testing assistant sidebar for Chrome. Go deeper. Get more done.

Testing Taxi Assistantคืออะไร?

Testing Taxi Assistant เป็นส่วนขยายของ Chrome ที่พัฒนาโดย nbosscher และคุณลักษณะหลักของมันคือ "QA/Testing assistant sidebar for Chrome. Go deeper. Get more done."

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Go deeper. Get more done. 
Testing Taxi is your QA/Testing assistant sidebar for Chrome.

Autofill Tedious Forms with One Click​
Get past those pesky forms quickly and get to the real spot you want to test. Let us auto-fill your form with reasonable sample data. Just place your cursor in an input field and press the fill button (or use the keyboard shortcut).

Always-on Spell Check and Issue Auto-Detection
As you work, we scan for spelling and common issues. Just leave the sidebar open and we’ll show orange or red alerts when something doesn’t look right. Our issue detection covers everything from in-secure links to missing alt text on images.

Discover Hidden Boundaries with Auto Run
Did you know there are over 12 email format boundaries that most systems don’t check for? We’ve got common boundaries like max/min length, but also format-specific ones so you can hit all those weird cases before the customer does. You can test your form for boundaries by placing your cursor in a field and hitting run.

Detect Device Issues Fast with Render
Testing on another device or browser takes a few minutes to set up. You need to open up the new device, find the browser, login and get your app into the situation you want to test. On Testing Taxi, you can test on other devices and browsers with a single click. We take care of the setup and render your screen exactly as you have it. It takes a few seconds and it’s one click away. 
*Works on localhost and firewalled sites

Quick Access to Sample Data
Copy/pasting data from your word doc isn’t a great way to test for boundaries. You can get realistic, randomised sample data with our data generator. Simply click in your form input and use the keyboard shortcut or click to insert the values.

Learn with Contextual Suggestions
There are a lot of ways to level up your testing game. Contextual suggestions give things you should check on the current screen. Suggestions all come with step by step instructions and why you should check this. We have content from top testers on things like Security, Usability and Validation.

Jot a note (and actually find it back)
We’ve all thrown a few notes in a word doc or on our favourite note app while we’re testing. After a while the doc becomes huge and we can’t find anything back. Testing Taxi provides contextual notes so you only see what’s relevant. Want to remember something about the user profile page? We’ll show it to you there, not on the reporting page.

Audit for common issues
There are a lot of pesky quality issues that we can quickly detect for you. Things like missing alt text on images or buttons that don’t meet the usability standards. Our audit makes it easy to show what’s failing (and saves you pulling out your pixel measuring tape)


Happy Testing!

Questions or feedback: email nate[at]testingtaxi.com or @natebosscher on Twitter                    

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

ชื่อ Testing Taxi Assistant Testing Taxi Assistant
ID ldobmbmakmndclbjblegfbnkgbeodpbm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/testing-taxi-assistant/ldobmbmakmndclbjblegfbnkgbeodpbm
คำอธิบาย QA/Testing assistant sidebar for Chrome. Go deeper. Get more done.
ขนาดไฟล์ 1.31 MB
จำนวนการติดตั้ง 126
เวอร์ชันปัจจุบัน 1.20
อัปเดตครั้งล่าสุด 2024-02-24
วันที่เผยแพร่ 2023-11-20
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา nbosscher
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://testing.taxi
URL หน้าช่วยเหลือ https://testing.taxi/contact/
URL หน้านโยบายความเป็นส่วนตัว https://testing.taxi/our-privacy-policy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Testing Taxi Assistant",
    "description": "QA\/Testing assistant sidebar for Chrome. Go deeper. Get more done.",
    "version": "1.20",
    "devtools_page": "taxi_devtools.html",
    "action": {
        "default_icon": "images\/icon-1024.png"
    },
    "background": {
        "service_worker": "scripts\/serviceWorker.js",
        "type": "module"
    },
    "side_panel": {
        "default_path": "sidepanel.html"
    },
    "commands": {
        "openSidebar": {
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "mac": "Command+Shift+F"
            },
            "description": "Open the Taxi sidebar or inject content into the current input"
        }
    },
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "permissions": [
        "storage",
        "sidePanel",
        "activeTab",
        "contextMenus",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "scripts\/content2.js"
            ],
            "run_at": "document_end",
            "all_frames": false,
            "match_about_blank": false,
            "match_origin_as_fallback": false,
            "world": "ISOLATED"
        }
    ]
}