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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | https://github.com/sindresorhus/quora-unblocker/issues |
عنوان صفحة سياسة الخصوصية | 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" ] } ] } |