Sagive POPUP Blocker

An attempt to build a better simpler popup blocker

What is Sagive POPUP Blocker?

Sagive POPUP Blocker is a Chrome extension developed by Sagive SEO, and its main feature is "An attempt to build a better simpler popup blocker".

Extension Screenshots

screenshot

Download Sagive POPUP Blocker Extension CRX File

Download Sagive POPUP Blocker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        A personal evolving popup blocker which works currently on urls entered to a list. I created this to watch videos online without the popups controlling my browser! a list of current urls i am blocking can be found here: https://goo.gl/2SQxVL                    

Extension Basic Information

Name Sagive POPUP Blocker Sagive POPUP Blocker
ID gcainaanppgliejbnkbepejpfepkpbbn
Official URL https://chrome.google.com/webstore/detail/sagive-popup-blocker/gcainaanppgliejbnkbepejpfepkpbbn
Description An attempt to build a better simpler popup blocker
File Size 132 KB
Installation Count 384
Current Version 0.0.16
Last Updated 2016-11-18
Publish Date 2016-11-18
Rating 3.00/5 Total 2 Ratings
Developer Sagive SEO
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Sagive POPUP Blocker",
    "version": "0.0.16",
    "options_page": "parts\/options.html",
    "description": "An attempt to build a better simpler popup blocker",
    "browser_action": {
        "default_popup": "parts\/popdown.html"
    },
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "permissions": [
        "storage",
        "tabs",
        "activeTab",
        "windows",
        "background",
        "browsingData",
        "webRequest",
        "webRequestBlocking",
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "css": [
                "css\/styles.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": true
    }
}