Feed Filter
Feed Filter helps you to filter your facebook feed with posts based on the keywords you enter inside the extension. It can be used…
ما هو Feed Filter؟
Feed Filter هو إضافة Chrome تم تطويرها بواسطة Maker، والميزة الرئيسية لها هي "Feed Filter helps you to filter your facebook feed with posts based on the keywords you enter inside the extension. It can be used…".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Feed Filter
قم بتنزيل ملفات الامتداد Feed Filter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Feed Filter helps you to filter your facebook feed with posts based on the keywords you enter inside the extension. It can be used to delete the post with specific keywords you want or it can show you a post with the keywords you want to see.
معلومات أساسية عن التمديد
الاسم | |
ID | ajhegeembcahfofkkhafolgpjgnimnib |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/feed-filter/ajhegeembcahfofkkhafolgpjgnimnib |
الوصف | Feed Filter helps you to filter your facebook feed with posts based on the keywords you enter inside the extension. It can be used… |
حجم الملف | 469 KB |
عدد التثبيتات | 81 |
النسخة الحالية | 1.0.1 |
آخر تحديث | 2021-05-11 |
تاريخ النشر | 2021-05-11 |
المطور | Maker |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
عنوان صفحة سياسة الخصوصية | https://automatics.one/privacy |
اللغات المدعومة | en |
manifest.json | |
{ "name": "Feed Filter", "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "1.0.1", "description": "", "manifest_version": 2, "incognito": "split", "icons": { "128": "icons\/128.png" }, "browser_action": { "default_icon": "icons\/128.png", "default_popup": "popup\/popup.html" }, "background": { "persistent": true, "page": "background\/background.html" }, "permissions": [ "storage", "cookies", "notifications", "*:\/\/*.facebook.com\/*" ], "content_scripts": [ { "run_at": "document_end", "matches": [ "*:\/\/*.facebook.com\/" ], "js": [ "scripts\/content_script.js", "scripts\/jquery.js" ] } ] } |