ScriptBlock
A smart extension that controls javascript, iframes, and plugins on Google Chrome.
ScriptBlock क्या है?
ScriptBlock compvid30 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A smart extension that controls javascript, iframes, and plugins on Google Chrome."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में ScriptBlock एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
सहायता पृष्ठ URL | https://github.com/compvid30/scriptblock |
गोपनीयता नीति पृष्ठ URL | 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" } |