All Answers for Quora
Tired of the annoying oh-register-now-you-fool layer? About to blacklist quora.com? This will let you read all answers.
ما هو All Answers for Quora؟
All Answers for Quora هو إضافة Chrome تم تطويرها بواسطة k0pernikus، والميزة الرئيسية لها هي "Tired of the annoying oh-register-now-you-fool layer? About to blacklist quora.com? This will let you read all answers.".
تحميل ملف CRX للإضافة All Answers for Quora
قم بتنزيل ملفات الامتداد All Answers for Quora بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
If you are annoyed by being asked to register everytime you stumble across a quora.com question, and all you want to do is cut to the chase, this little extension let you do that. Read all the Answers without the BS. For the technical interested: All this extension does it adding a little get parameter, as quora has this feature already in place when people share their stuff in social media.
معلومات أساسية عن التمديد
الاسم | |
ID | oibecpjfbcfhiijpppnjinnnoldjmiac |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/all-answers-for-quora/oibecpjfbcfhiijpppnjinnnoldjmiac |
الوصف | Tired of the annoying oh-register-now-you-fool layer? About to blacklist quora.com? This will let you read all answers. |
حجم الملف | 24.74 KB |
عدد التثبيتات | 397 |
النسخة الحالية | 0.2 |
آخر تحديث | 2013-07-07 |
تاريخ النشر | 2013-07-07 |
تقييم | 5.00/5 مجموع تقييمات 8 |
المطور | k0pernikus |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/k0pernikus/allAnswersForQuora |
عنوان صفحة المساعدة | https://github.com/k0pernikus/allAnswersForQuora/issues |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "All Answers for Quora", "version": "0.2", "description": "Tired of the annoying oh-register-now-you-fool layer? About to blacklist quora.com? This will let you read all answers.", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "*:\/\/www.quora.com\/*" ], "background": { "persistent": false, "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/www.quora.com\/*" ], "js": [ "content.js" ], "run_at": "document_start", "all_frames": true } ] } |