NSFW All
Adds NSFW posts to the /r/all feed on reddit
ما هو NSFW All؟
NSFW All هو إضافة Chrome تم تطويرها بواسطة nsfwallext، والميزة الرئيسية لها هي "Adds NSFW posts to the /r/all feed on reddit".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة NSFW All
قم بتنزيل ملفات الامتداد NSFW All بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
A simple extension to add NSFW posts back to the /r/all feed. Uses a configurable multireddit to fetch posts and then attempts to add them to the feed in the position reddit would have ranked them. Click on the extension's button to configure and then visit /r/all. New reddit currently not supported at all so expect strange behavior if attempting to use there.
معلومات أساسية عن التمديد
الاسم | |
ID | kkgfmppgfjlomhijlklhiploceoekhgn |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/nsfw-all/kkgfmppgfjlomhijlklhiploceoekhgn |
الوصف | Adds NSFW posts to the /r/all feed on reddit |
حجم الملف | 9.38 KB |
عدد التثبيتات | 97 |
النسخة الحالية | 1.1 |
آخر تحديث | 2021-11-12 |
تاريخ النشر | 2021-11-12 |
المطور | nsfwallext |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "NSFW All", "description": "Adds NSFW posts to the \/r\/all feed on reddit", "version": "1.1", "manifest_version": 3, "content_scripts": [ { "matches": [ "*:\/\/*.reddit.com\/r\/all*" ], "js": [ "nsfw.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ { "matches": [ "*:\/\/*.reddit.com\/*" ], "resources": [ "html\/submission.html" ] } ], "action": { "default_popup": "html\/popup.html" }, "permissions": [ "storage" ], "icons": { "128": "icons\/icon128.png" } } |