Remove Citations
Remove the citations found on Wikipedia pages
ما هو Remove Citations؟
Remove Citations هو إضافة Chrome تم تطويرها بواسطة https://mileung.com، والميزة الرئيسية لها هي "Remove the citations found on Wikipedia pages".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Remove Citations
قم بتنزيل ملفات الامتداد Remove Citations بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This simple Chrome Extension removes the citations found on Wikipedia articles.
معلومات أساسية عن التمديد
الاسم | Remove Citations |
ID | ojmmohmckbjmbpjpdohkfmhnkfedbofp |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/remove-citations/ojmmohmckbjmbpjpdohkfmhnkfedbofp |
الوصف | Remove the citations found on Wikipedia pages |
حجم الملف | 20.74 KB |
عدد التثبيتات | 1,098 |
النسخة الحالية | 1.3 |
آخر تحديث | 2018-01-08 |
تاريخ النشر | 2018-01-08 |
تقييم | 4.33/5 مجموع تقييمات 9 |
المطور | https://mileung.com |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | http://mileung.com/ |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Remove Citations", "description": "Remove the citations found on Wikipedia pages", "version": "1.3", "background": { "scripts": [ "src\/background.js" ] }, "page_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/*.wikipedia.org\/*" ], "js": [ "src\/content.js" ] } ], "permissions": [ "tabs", "storage", "https:\/\/*.wikipedia.org\/*", "https:\/\/ajax.googleapis.com\/" ] } |