beABot
Become a javascript crawler bot (beta)
beABotคืออะไร?
beABot เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://williamnharvey.com และคุณลักษณะหลักของมันคือ "Become a javascript crawler bot (beta)"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย beABot
ดาวน์โหลดไฟล์ส่วนขยาย beABot ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Changes your actions to emulate a javascript crawler. Originally designed to test if a web scraping bot would be able to log into reddit.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | beABot |
ID | obheiedhodboffaomefkclbnhmngjioa |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/beabot/obheiedhodboffaomefkclbnhmngjioa |
คำอธิบาย | Become a javascript crawler bot (beta) |
ขนาดไฟล์ | 51.2 KB |
จำนวนการติดตั้ง | 198 |
เวอร์ชันปัจจุบัน | 1.0.3 |
อัปเดตครั้งล่าสุด | 2018-01-16 |
วันที่เผยแพร่ | 2018-01-16 |
คะแนน | 3.67/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | https://williamnharvey.com |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "beABot", "version": "1.0.3", "author": "Will Harvey", "description": "Become a javascript crawler bot (beta)", "manifest_version": 2, "browser_action": { "default_title": "beABot", "default_popup": "popup.html", "default_icon": "assets\/williamnharvey.png" }, "icons": { "16": "assets\/williamnharvey.png", "48": "assets\/williamnharvey.png", "128": "assets\/williamnharvey.png" }, "background": { "scripts": [ "scripts\/background.js" ], "persistent": false }, "permissions": [ "tabs", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "assets\/jquery-3.2.1.min.js", "scripts\/contentscript.js" ] } ] } |