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…
Apa itu Feed Filter?
Feed Filter adalah ekstensi Chrome yang dikembangkan oleh Maker, dan fitur utamanya adalah "Feed Filter helps you to filter your facebook feed with posts based on the keywords you enter inside the extension. It can be used…".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Feed Filter
Unduh file ekstensi Feed Filter dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | |
ID | ajhegeembcahfofkkhafolgpjgnimnib |
URL Resmi | https://chromewebstore.google.com/detail/feed-filter/ajhegeembcahfofkkhafolgpjgnimnib |
Deskripsi | Feed Filter helps you to filter your facebook feed with posts based on the keywords you enter inside the extension. It can be used… |
Ukuran File | 469 KB |
Jumlah Instalasi | 81 |
Versi Saat Ini | 1.0.1 |
Terakhir Diperbarui | 2021-05-11 |
Tanggal Publikasi | 2021-05-11 |
Pengembang | Maker |
[email protected] | |
Tipe Pembayaran | free |
URL Halaman Kebijakan Privasi | https://automatics.one/privacy |
Bahasa yang Didukung | 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" ] } ] } |