Reddit+
Reddit+
ما هو Reddit+؟
Reddit+ هو إضافة Chrome تم تطويرها بواسطة @kennydude، والميزة الرئيسية لها هي "Reddit+".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Reddit+
قم بتنزيل ملفات الامتداد Reddit+ بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Reddit+ is an extension which improves Reddit. Currently it does - Makes Reddit mobile-friendly (works on Firefox for Android, Chrome does not have extensions at the time of writing) - Preview - Preview of imgur etc Code is available on GitHub -- https://github.com/kennydude/redditplus
معلومات أساسية عن التمديد
الاسم | |
ID | djinnjnojhiahjgjahicofaakpmpdfhc |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/reddit+/djinnjnojhiahjgjahicofaakpmpdfhc |
الوصف | Reddit+ |
حجم الملف | 75.52 KB |
عدد التثبيتات | 13 |
النسخة الحالية | 1.4 |
آخر تحديث | 2013-05-19 |
تاريخ النشر | 2013-05-19 |
المطور | @kennydude |
نوع الدفع | free |
موقع الإضافة | https://github.com/kennydude/redditplus |
اللغات المدعومة | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Reddit+", "version": "1.4", "manifest_version": 2, "description": "Reddit+", "background": { "persistent": false, "scripts": [ "bg.js" ] }, "permissions": [ "*:\/\/*.reddit.com\/*", "*:\/\/*.imgur.com\/*", "*:\/\/play.google.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/www.reddit.com\/*" ], "js": [ "data\/zepto.min.js", "chrome.js", "data\/marked.js", "data\/redditplus.js", "data\/magpopup.js" ], "css": [ "data\/redditplus.css", "data\/magpopup.css" ], "run_at": "document_idle" } ], "web_accessible_resources": [ "data\/button.png", "data\/button-close.png", "data\/loading.gif" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |