A forma mais fácil de retornar ao stock é via recovery que também serve para dar unbrick. Se você estiver desesperado, pode tentar esse tutorial em seu roteador tp-link para ver se consegue
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /**************************\ | |
| Basic Modal Styles | |
| \**************************/ | |
| .modal { | |
| font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif; | |
| } | |
| .modal__overlay { | |
| position: fixed; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "schema_version": 1, | |
| "name": "Vacina Fortaleza", | |
| "description": "Quando a pessoa que você procura for agendada e aparecer na lista, o Huginn vai capturar a informação e repassar para o bot Telegram. Verifique se seu servidor pode acessar todas as url neste cenário. 'Em Baixar lista para vacina' use ou o 'nome' ou o 'cpf'. Veja a documentação de Huginn sobre como usar o TelegramAgent e como subir seu próprio bot Telegram.", | |
| "source_url": false, | |
| "guid": "d78f358c02c6d166256c47c3fe29a65b", | |
| "tag_fg_color": "#ffffff", | |
| "tag_bg_color": "#5bc0de", | |
| "icon": "bullhorn", | |
| "exported_at": "2021-08-16T20:46:32Z", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function () { | |
| // Comment buttons | |
| let buttons = document.getElementsByClassName('_3KgrO85L1p9wQbgwG27q4y'); | |
| // Time comment | |
| //let timeC = document.getElementsByClassName('_3yx4Dn0W3Yunucf5sVJeFU'); | |
| // Time edit comment _2ETuFsVzMBxiHia6HfJCTQ _18WUrfxbke5CjwIjhXu6C- | |
| //let timeEc = document.getElementsByClassName('_3KgrO85L1p9wQbgwG27q4y'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Criar uma função de filtro que recebe um array de elementos | |
| function filterElements(elements) { | |
| let sponsorString = 'Patrocinado' | |
| // Filtrar apenas os elementos que contêm a string "PatrocinadoO" | |
| let filtered = elements.filter(function(element) { | |
| if (element.innerText.includes(sponsorString) && !(element.style.display == 'none')) | |
| { |