Big Brother Blocker
This plugin will remove all Big Brother and BB -related content from the most popular Finnish news websites.
ما هو Big Brother Blocker؟
Big Brother Blocker هو إضافة Chrome تم تطويرها بواسطة ville.pv، والميزة الرئيسية لها هي "This plugin will remove all Big Brother and BB -related content from the most popular Finnish news websites.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Big Brother Blocker
قم بتنزيل ملفات الامتداد Big Brother Blocker بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
The extension will look for BB or Big Brother related content from mtv.fi, iltasanomat.fi, iltalehti.fi and hs.fi news websites and remove them. See screenshots.
معلومات أساسية عن التمديد
الاسم | |
ID | gjoppkgfoenmfemaobkefghgnfejoood |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/big-brother-blocker/gjoppkgfoenmfemaobkefghgnfejoood |
الوصف | This plugin will remove all Big Brother and BB -related content from the most popular Finnish news websites. |
حجم الملف | 76.59 KB |
عدد التثبيتات | 40 |
النسخة الحالية | 0.0.1 |
آخر تحديث | 2014-09-02 |
تاريخ النشر | 2014-09-02 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | ville.pv |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Big Brother Blocker", "description": "This plugin will remove all Big Brother and BB -related content from the most popular Finnish news websites.", "version": "0.0.1", "background": { "scripts": [ "background.js" ] }, "permissions": [ "http:\/\/*\/*" ], "externally_connectable": { "matches": [ "*:\/\/*.youtube.com\/*" ] }, "content_scripts": [ { "matches": [ "http:\/\/iltasanomat.fi\/*", "http:\/\/www.iltasanomat.fi\/*" ], "js": [ "jquery-2.1.1.min.js", "iltasanomat.js" ] }, { "matches": [ "http:\/\/www.mtv.fi\/*", "http:\/\/mtv.fi\/*" ], "js": [ "jquery-2.1.1.min.js", "mtv.js" ] }, { "matches": [ "http:\/\/iltalehti.fi\/*", "http:\/\/www.iltalehti.fi\/*" ], "js": [ "jquery-2.1.1.min.js", "iltalehti.js" ] }, { "matches": [ "http:\/\/hs.fi\/*", "http:\/\/www.hs.fi\/*" ], "js": [ "jquery-2.1.1.min.js", "hs.js" ] } ], "icons": { "16": "16.png", "48": "48.png", "128": "128.png" } } |