ScriptBlock
A smart extension that controls javascript, iframes, and plugins on Google Chrome.
ما هو ScriptBlock؟
ScriptBlock هو إضافة Chrome تم تطويرها بواسطة compvid30، والميزة الرئيسية لها هي "A smart extension that controls javascript, iframes, and plugins on Google Chrome.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة ScriptBlock
قم بتنزيل ملفات الامتداد ScriptBlock بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Scriptblock is an extension that provides better control of javascript, iframes and other unwanted content. It even can midigate cross-site-scripting(XXS) attacks and drive-by-downloads. ScriptBlock works perfectly together with other extensions like AdBlock, AdBlock Plus or Ghostery. You can add your trusted sites to a whitelist, so they will not be affected by ScriptBlock. If you like this extension, please support me and click on the donate button or give me a good review in chrome web store. :) For bug reports please go to: https://github.com/compvid30/scriptblock
معلومات أساسية عن التمديد
الاسم | ScriptBlock |
ID | hcdjknjpbnhdoabbngpmfekaecnpajba |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/scriptblock/hcdjknjpbnhdoabbngpmfekaecnpajba |
الوصف | A smart extension that controls javascript, iframes, and plugins on Google Chrome. |
حجم الملف | 161 KB |
عدد التثبيتات | 43,296 |
النسخة الحالية | 1.5 |
آخر تحديث | 2018-06-14 |
تاريخ النشر | 2018-06-13 |
تقييم | 3.98/5 مجموع تقييمات 444 |
المطور | compvid30 |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/compvid30/scriptblock |
عنوان صفحة المساعدة | https://github.com/compvid30/scriptblock |
عنوان صفحة سياسة الخصوصية | https://github.com/compvid30/scriptblock/wiki/Privacy-policy |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "background": { "page": "background.html" }, "content_scripts": [ { "all_frames": true, "js": [ "common\/sjcl.js", "CHANGE__PASSWORD__HERE.js", "common\/common.js", "blockStart.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "ftp:\/\/*\/*", "file:\/\/*\/*" ], "run_at": "document_start" }, { "all_frames": true, "js": [ "blockAfter.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "ftp:\/\/*\/*", "file:\/\/*\/*" ], "run_at": "document_idle" } ], "description": "A smart extension that controls javascript, iframes, and plugins on Google Chrome.", "icons": { "128": "img\/icon128.png", "16": "img\/icon16.png", "19": "img\/forbidden.png", "48": "img\/icon48.png" }, "name": "ScriptBlock", "minimum_chrome_version": "18", "options_page": "options.html", "browser_action": { "default_icon": "img\/disabled.png", "default_popup": "popup.html", "default_title": "ScriptBlock - click for more action" }, "permissions": [ "tabs" ], "version": "1.5" } |