2014-06-25 00:30:36 +02:00
<!DOCTYPE html>
< html >
< head >
2014-10-21 16:45:54 +02:00
< meta charset = "utf-8" >
2015-03-10 05:00:33 +01:00
< title > uBlock — Settings< / title >
2014-06-25 00:30:36 +02:00
< link rel = "stylesheet" type = "text/css" href = "css/common.css" >
< link rel = "stylesheet" type = "text/css" href = "css/dashboard-common.css" >
2015-04-09 11:02:57 +02:00
< link rel = "stylesheet" type = "text/css" href = "css/settings.css" >
2014-06-25 00:30:36 +02:00
< / head >
< body >
2015-03-07 05:36:09 +01:00
< ul id = "userSettings" >
2015-12-13 06:56:30 +01:00
< li > < input id = "collapse-blocked" type = "checkbox" data-setting-name = "collapseBlocked" data-setting-type = "bool" > < label data-i18n = "settingsCollapseBlockedPrompt" for = "collapse-blocked" > < / label >
< li > < input id = "icon-badge" type = "checkbox" data-setting-name = "showIconBadge" data-setting-type = "bool" > < label data-i18n = "settingsIconBadgePrompt" for = "icon-badge" > < / label >
< li > < input id = "context-menu-enabled" type = "checkbox" data-setting-name = "contextMenuEnabled" data-setting-type = "bool" > < label data-i18n = "settingsContextMenuPrompt" for = "context-menu-enabled" > < / label >
< li > < input id = "tooltips-disabled" type = "checkbox" data-setting-name = "tooltipsDisabled" data-setting-type = "bool" > < label data-i18n = "settingsTooltipsPrompt" for = "tooltips-disabled" > < / label >
< li > < input id = "color-blind-friendly" type = "checkbox" data-setting-name = "colorBlindFriendly" data-setting-type = "bool" > < label data-i18n = "settingsColorBlindPrompt" for = "color-blind-friendly" > < / label >
< li > < input id = "cloud-storage-enabled" type = "checkbox" data-setting-name = "cloudStorageEnabled" data-setting-type = "bool" > < label data-i18n = "settingsCloudStorageEnabledPrompt" for = "cloud-storage-enabled" > < / label > < a class = "fa info" href = "https://github.com/gorhill/uBlock/wiki/Cloud-storage" target = "_blank" >  < / a >
< li > < input id = "advanced-user-enabled" type = "checkbox" data-setting-name = "advancedUserEnabled" data-setting-type = "bool" > < label data-i18n = "settingsAdvancedUserPrompt" for = "advanced-user-enabled" > < / label >
2015-06-02 14:26:35 +02:00
< li class = "subgroup" > < span data-i18n = "3pGroupPrivacy" > < / span > < ul >
2015-12-13 06:56:30 +01:00
< li > < input id = "prefetching-disabled" type = "checkbox" data-setting-name = "prefetchingDisabled" data-setting-type = "bool" > < label data-i18n = "settingsPrefetchingDisabledPrompt" for = "prefetching-disabled" > < / label > < a class = "fa info" href = "https://wikipedia.org/wiki/Link_prefetching#Issues_and_criticisms" target = "_blank" >  < / a >
< li > < input id = "hyperlink-auditing-disabled" type = "checkbox" data-setting-name = "hyperlinkAuditingDisabled" data-setting-type = "bool" > < label data-i18n = "settingsHyperlinkAuditingDisabledPrompt" for = "hyperlink-auditing-disabled" > < / label > < a class = "fa info" href = "http://www.wilderssecurity.com/threads/hyperlink-auditing-aka-a-ping-and-beacon-aka-navigator-sendbeacon.364904/" target = "_blank" >  < / a >
2015-12-18 18:56:37 +01:00
< li > < input id = "webrtc-ipaddress-hidden" type = "checkbox" data-setting-name = "webrtcIPAddressHidden" data-setting-type = "bool" > < label data-i18n = "settingsWebRTCIPAddressHiddenPrompt" for = "webrtc-ipaddress-hidden" > < / label > < a class = "fa info important" href = "https://github.com/gorhill/uBlock/wiki/Prevent-WebRTC-from-leaking-local-IP-address" target = "_blank" >  < / a >
2015-06-02 14:26:35 +02:00
< / ul >
2015-03-07 05:36:09 +01:00
< / ul >
2014-06-25 00:30:36 +02:00
2015-03-07 05:36:09 +01:00
< div id = "localData" style = "margin: 0 1em;" >
< div style = "margin: 2.5em 0; border-top: 1px solid #ccc;" > < / div >
< ul >
< li >
< li style = "display: none;" > < span data-i18n = "settingsLastBackupPrompt" > < / span > < ul >
< li >
< / ul >
< li style = "display: none;" > < span data-i18n = "settingsLastRestorePrompt" > < / span > < ul >
< li >
< li >
< / ul >
< / ul >
< / div >
2015-01-06 17:44:06 +01:00
2015-03-07 05:36:09 +01:00
< div style = "margin: 2.5em 1em;" >
2015-08-12 18:17:39 +02:00
< p > < button class = "custom" type = "button" id = "export" data-i18n = "aboutBackupDataButton" > < / button >  
< button class = "custom" type = "button" id = "import" data-i18n = "aboutRestoreDataButton" > < / button >
2015-01-06 17:44:06 +01:00
< input id = "restoreFilePicker" type = "file" accept = "text/plain" class = "hiddenFileInput" >
< p >
2015-08-12 18:17:39 +02:00
< p > < button class = "custom" type = "button" id = "reset" data-i18n = "aboutResetDataButton" > < / button >
2015-03-07 05:36:09 +01:00
< / div >
2015-01-06 17:44:06 +01:00
2014-11-04 12:32:44 +01:00
< script src = "js/vapi-common.js" > < / script >
< script src = "js/vapi-client.js" > < / script >
< script src = "js/udom.js" > < / script >
< script src = "js/i18n.js" > < / script >
< script src = "js/dashboard-common.js" > < / script >
< script src = "js/settings.js" > < / script >
2014-06-25 00:30:36 +02:00
< / body >
< / html >