Sagive POPUP Blocker
An attempt to build a better simpler popup blocker
Wat is Sagive POPUP Blocker?
Sagive POPUP Blocker is een Chrome-extensie ontwikkeld door Sagive SEO, en de belangrijkste functie is "An attempt to build a better simpler popup blocker".
Extensie Screenshots
Download het CRX-bestand van de extensie Sagive POPUP Blocker
Download Sagive POPUP Blocker-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | |
ID | gcainaanppgliejbnkbepejpfepkpbbn |
Officiële URL | https://chrome.google.com/webstore/detail/sagive-popup-blocker/gcainaanppgliejbnkbepejpfepkpbbn |
Beschrijving | An attempt to build a better simpler popup blocker |
Bestandsgrootte | 132 KB |
Aantal Installaties | 384 |
Huidige Versie | 0.0.16 |
Laatst Bijgewerkt | 2016-11-18 |
Publicatiedatum | 2016-11-18 |
Beoordeling | 3.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | Sagive SEO |
Betalingswijze | free |
Ondersteunde Talen | 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 } } |