Quora Unblocker
Removes the login requirement and any nagging about it
Quora Unblockerคืออะไร?
Quora Unblocker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://sindresorhus.com และคุณลักษณะหลักของมันคือ "Removes the login requirement and any nagging about it"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Quora Unblocker
ดาวน์โหลดไฟล์ส่วนขยาย Quora Unblocker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Quora has a quite obscure way to view content without logging [0] in by appending `?share=1` to the url. This extensions appends that to every Quora url you visit in addition to removing some annoying login nags. [0]: http://blog.quora.com/Making-Sharing-Better
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | pcjnlebeogfamlbeloiccdidgmaeojhe |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/quora-unblocker/pcjnlebeogfamlbeloiccdidgmaeojhe |
คำอธิบาย | Removes the login requirement and any nagging about it |
ขนาดไฟล์ | 17.22 KB |
จำนวนการติดตั้ง | 3,000 |
เวอร์ชันปัจจุบัน | 1.1.2 |
อัปเดตครั้งล่าสุด | 2020-11-19 |
วันที่เผยแพร่ | 2019-03-01 |
คะแนน | 3.65/5 รวมทั้งหมด 31 คะแนน |
ผู้พัฒนา | http://sindresorhus.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/sindresorhus/quora-unblocker |
URL หน้าช่วยเหลือ | https://github.com/sindresorhus/quora-unblocker/issues |
URL หน้านโยบายความเป็นส่วนตัว | https://github.com/sindresorhus/privacy-policy/blob/master/chrome-extensions.md |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Quora Unblocker", "version": "1.1.2", "description": "Removes the login requirement and any nagging about it", "homepage_url": "https:\/\/github.com\/sindresorhus\/quora-unblocker", "manifest_version": 2, "minimum_chrome_version": "65", "icons": { "128": "icon.png" }, "permissions": [ "webRequest", "webRequestBlocking", "*:\/\/quora.com\/*", "*:\/\/www.quora.com\/*" ], "background": { "scripts": [ "query-string.js", "background.js" ] }, "content_scripts": [ { "run_at": "document_end", "matches": [ "*:\/\/quora.com\/*", "*:\/\/www.quora.com\/*" ], "css": [ "content.css" ] } ] } |