RandomUA

Switches the user agent of the browser randomly for each new request.

RandomUAคืออะไร?

RandomUA เป็นส่วนขยายของ Chrome ที่พัฒนาโดย lfstindall และคุณลักษณะหลักของมันคือ "Switches the user agent of the browser randomly for each new request."

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

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

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

                        RandomUA is a WebExtension that changes your User-Agent string to a sensible-looking string which is different for every request. Supports excluding arbitrary URLs and fragments, and generating mobile-like UAs.

A User-Agent string is a piece of information that your computer sends to every website you go to. It tells them what software you use to access the Internet, what kind of computer you’re using, and what kind of operating system you use. Some of this is really important to those websites, but most of it isn’t, and it can be used to help track you without your consent.

Many browser fingerprinting solutions use the User-Agent as a relatively constant string, because most users UAs only change when their browser updates. Therefore, having a different UA on each request make it a lot easier to evade these tracking schemes.

RandomUA requires access to all URLs and web request data for its core function: it has to be able to change your user agent string!                    

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

ชื่อ RandomUA RandomUA
ID hjnnbhmaakbibdndnmjbkppmfjoejadg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/randomua/hjnnbhmaakbibdndnmjbkppmfjoejadg
คำอธิบาย Switches the user agent of the browser randomly for each new request.
ขนาดไฟล์ 19.3 KB
จำนวนการติดตั้ง 63
เวอร์ชันปัจจุบัน 1.1.0
อัปเดตครั้งล่าสุด 2017-11-08
วันที่เผยแพร่ 2017-11-08
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา lfstindall
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://leotindall.com/randomua/
URL หน้าช่วยเหลือ https://leotindall.com/randomua/
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "RandomUA",
    "short_name": "RandomUA",
    "author": "Leo Tindall",
    "version": "1.1.0",
    "developer": {
        "name": "Leo Tindall",
        "url": "https:\/\/leotindall.com\/randomua\/"
    },
    "description": "Switches the user agent of the browser randomly for each new request.",
    "icons": {
        "48": "icons\/randomua-48.png",
        "96": "icons\/randomua-96.png"
    },
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "options_ui": {
        "page": "pages\/prefs.html",
        "browser_style": true
    },
    "background": {
        "scripts": [
            "background\/random-ua.js"
        ]
    },
    "applications": {
        "gecko": {
            "id": "{f12d78f2-b4e9-4a3e-9d2a-655fd45f1ab5}"
        }
    }
}