2020-02-27 13:45:29 +01:00
<!DOCTYPE html>
< html >
< head >
2021-04-05 07:43:17 +02:00
< title > Popup | LocalCDN< / title >
2020-02-27 13:45:29 +01:00
< meta name = "viewport" content = "width=device-width, initial-scale=1.0" >
< meta charset = "utf-8" / >
< link rel = "stylesheet" type = "text/css" href = "popup.css" >
2022-07-04 06:37:46 +02:00
< link rel = "stylesheet" type = "text/css" href = "toggle.css" >
2020-06-28 07:43:08 +02:00
< link rel = "stylesheet" type = "text/css" href = "../base.css" >
2020-02-27 13:45:29 +01:00
< / head >
< body >
< script src = "../../core/constants.js" > < / script >
2020-08-30 18:56:36 +02:00
< script src = "../../core/storage-manager.js" > < / script >
2020-11-05 07:07:29 +01:00
< script src = "../../modules/internal/targets.js" > < / script >
2020-02-27 13:45:29 +01:00
< script src = "../../modules/internal/helpers.js" > < / script >
< script src = "popup.js" > < / script >
< header >
2020-07-01 08:19:58 +02:00
< div class = "heading" >
< img class = "icon-logo" src = "../../icons/icon.svg" alt = "Extension Icon" >
< span id = "name-label" > < / span > < sup id = "version-label" class = "label-version" > < / sup >
< / div >
2020-05-19 17:24:36 +02:00
< div id = "donate-button" >
2020-06-05 06:22:09 +02:00
< p id = "label-donate" data-i18n-content = "labelDonate" > Donate< / p >
2021-03-21 08:07:30 +01:00
< div id = "donate-button-svg" class = "button-svg" data-link = "donate" > < / div >
2020-05-16 17:40:46 +02:00
< / div >
2020-02-27 13:45:29 +01:00
< / header >
< section class = "content" >
< div id = "website-context" class = "panel hidden" >
< div class = "subpanel" >
2020-03-14 10:28:51 +01:00
< div id = "protection-toggle" >
2022-07-04 06:37:46 +02:00
< label class = 'toggle' for = 'protection-toggle-switch' >
< input type = 'checkbox' name = 'protection-toggle-switch' id = 'protection-toggle-switch' class = "toggle__input" >
< span class = "toggle__display" hidden >
< svg width = '18' height = '14' viewBox = '0 0 18 14' fill = 'none' xmlns = 'http://www.w3.org/2000/svg' aria-hidden = "true" focusable = "false" class = "toggle__icon toggle__icon--checkmark" >
< path d = 'M6.08471 10.6237L2.29164 6.83059L1 8.11313L6.08471 13.1978L17 2.28255L15.7175 1L6.08471 10.6237Z' fill = 'currentcolor' stroke = 'currentcolor' / >
< / svg >
< svg width = '13' height = '13' viewBox = '0 0 13 13' fill = 'none' xmlns = 'http://www.w3.org/2000/svg' aria-hidden = "true" focusable = "false" class = "toggle__icon toggle__icon--cross" >
< path d = 'M11.167 0L6.5 4.667L1.833 0L0 1.833L4.667 6.5L0 11.167L1.833 13L6.5 8.333L11.167 13L13 11.167L8.333 6.5L13 1.833L11.167 0Z' fill = 'currentcolor' / >
< / svg >
< / span >
< / label >
2020-02-27 13:45:29 +01:00
< / div >
< div class = "label-domain" >
< span id = "domain-indicator" > < / span >
< / div >
2020-05-25 22:35:16 +02:00
< / div >
2020-06-04 06:54:49 +02:00
< div class = "subpanel" id = "div-manipulateDOM" >
2020-05-25 22:35:16 +02:00
< div id = "manipulateDOM-toggle" >
2022-07-04 06:37:46 +02:00
< label class = 'toggle' for = 'manipulateDOM-toggle-switch' >
< input type = 'checkbox' name = 'manipulateDOM-toggle-switch' id = 'manipulateDOM-toggle-switch' class = "toggle__input" >
< span class = "toggle__display" hidden >
< svg width = '18' height = '14' viewBox = '0 0 18 14' fill = 'none' xmlns = 'http://www.w3.org/2000/svg' aria-hidden = "true" focusable = "false" class = "toggle__icon toggle__icon--checkmark" >
< path d = 'M6.08471 10.6237L2.29164 6.83059L1 8.11313L6.08471 13.1978L17 2.28255L15.7175 1L6.08471 10.6237Z' fill = 'currentcolor' stroke = 'currentcolor' / >
< / svg >
< svg width = '13' height = '13' viewBox = '0 0 13 13' fill = 'none' xmlns = 'http://www.w3.org/2000/svg' aria-hidden = "true" focusable = "false" class = "toggle__icon toggle__icon--cross" >
< path d = 'M11.167 0L6.5 4.667L1.833 0L0 1.833L4.667 6.5L0 11.167L1.833 13L6.5 8.333L11.167 13L13 11.167L8.333 6.5L13 1.833L11.167 0Z' fill = 'currentcolor' / >
< / svg >
< / span >
2020-05-25 22:35:16 +02:00
< / label >
< / div >
2020-05-27 06:22:58 +02:00
< div id = "label-manipulateDOM" class = "label-domain" >
2021-03-21 08:07:30 +01:00
< a id = "manipulateDOM-indicator" data-i18n-content = "labelManipulateDOM" data-link = "faq-html-filter" > Filter HTML source code< / a >
2020-05-25 22:35:16 +02:00
< / div >
2020-02-27 13:45:29 +01:00
< / div >
2021-08-13 06:15:10 +02:00
< div class = "subpanel" id = "div-google-fonts" >
< div id = "google-fonts-toggle" >
2022-07-04 06:37:46 +02:00
< label class = 'toggle' for = 'google-fonts-toggle-switch' >
< input type = 'checkbox' name = 'google-fonts-toggle-switch' id = 'google-fonts-toggle-switch' class = "toggle__input" >
< span class = "toggle__display" hidden >
< svg width = '18' height = '14' viewBox = '0 0 18 14' fill = 'none' xmlns = 'http://www.w3.org/2000/svg' aria-hidden = "true" focusable = "false" class = "toggle__icon toggle__icon--checkmark" >
< path d = 'M6.08471 10.6237L2.29164 6.83059L1 8.11313L6.08471 13.1978L17 2.28255L15.7175 1L6.08471 10.6237Z' fill = 'currentcolor' stroke = 'currentcolor' / >
< / svg >
< svg width = '13' height = '13' viewBox = '0 0 13 13' fill = 'none' xmlns = 'http://www.w3.org/2000/svg' aria-hidden = "true" focusable = "false" class = "toggle__icon toggle__icon--cross" >
< path d = 'M11.167 0L6.5 4.667L1.833 0L0 1.833L4.667 6.5L0 11.167L1.833 13L6.5 8.333L11.167 13L13 11.167L8.333 6.5L13 1.833L11.167 0Z' fill = 'currentcolor' / >
< / svg >
< / span >
2021-08-13 06:15:10 +02:00
< / label >
< / div >
< div class = "label-domain" >
2021-08-15 18:19:07 +02:00
< span data-i18n-content = "blockGoogleFontsTitle" > Block Google Fonts< / span >
2021-08-13 06:15:10 +02:00
< / div >
< / div >
2020-02-27 13:45:29 +01:00
< / div >
< div id = "extension-context" class = "panel" >
< div id = "injection-counter" class = "counter" > 0< / div >
2020-11-06 08:06:46 +01:00
< div class = "description" data-i18n-content = "amountInjectedDescription" > Amount of local Content Delivery Network resource injections since installation.< / div >
2020-02-27 13:45:29 +01:00
< / div >
< / section >
< footer >
2020-08-11 16:41:42 +02:00
< div id = "testing-utility" >
2021-03-21 08:07:30 +01:00
< a id = "testing-utility-link" class = "link-text" data-i18n-content = "websiteBroken" data-link = "testing-utility" > Website broken?< / a >
2020-08-11 07:09:07 +02:00
< / div >
2021-02-21 19:50:41 +01:00
< div id = "logging-button" class = "button" >
2021-03-21 08:07:30 +01:00
< div id = "logging-button-svg" class = "button-svg" data-link = "logging" > < / div >
2021-02-21 19:50:41 +01:00
< / div >
2020-08-12 06:57:12 +02:00
< div id = "statistics-button" class = "button" data-i18n-title = "headerStatistics" >
2021-03-21 08:07:30 +01:00
< div id = "statistics-button-svg" class = "button-svg" data-link = "statistics" > < / div >
2020-02-27 13:45:29 +01:00
< / div >
2020-08-11 16:41:42 +02:00
< div id = "options-button" class = "button" data-i18n-title = "optionsTitle" >
< div id = "options-button-svg" class = "button-svg" > < / div >
< / div >
2020-02-27 13:45:29 +01:00
< / footer >
2021-03-21 08:07:30 +01:00
< div id = "popup-incomplete-translation" data-link = "translation" > < / div >
2020-02-27 13:45:29 +01:00
< / body >
< / html >