opera.extension.urlfilter.block.remove()
Description:
Removes a rule from the virtual list of blocked URLs.
Parameters:
rule: The rule (e.g. domain) to block.
Syntax:
void remove (<DOMString> rule)
Example:
<!--
The configuration file ('config.xml').
-->
<?xml version='1.0' encoding='utf-8'?>
<widget xmlns="http://www.w3.org/ns/widgets">
<feature name="opera:urlfilter"/>
</widget>
//
// The background process (e.g. index.html)
//
var whitelist = ['http://opera.com/*', 'http://*.opera.com/*'];
// Assign the URLFilter object to a variable for efficiency
var filter = opera.extension.urlfilter;
// Loop through the array of sites and remove each one from the "block" list
for (var i = 0, len = whitelist.length; i < len; i++) {
filter.block.remove(whitelist[i]);
}
This article is licensed under a Creative Commons Attribution 3.0 Unported license.
Comments
-
don,t blokin my app opera.com or my opera opera mobile URL. please make me popup to start working my aplicatoin
No new comments accepted.cabdulqadir salad
Monday, April 23, 2012