diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-11-23 22:08:30 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-23 22:08:30 -0500 |
commit | d454b52a18127f782fafdf71534ea2c41f20ef44 (patch) | |
tree | baa980dbd94d624d44bac2df3d691fb759d8300d /ext/js/document-start.js | |
parent | ecc994a8bbd52a426434a549f8e3e68eba6e786e (diff) |
Google Docs accessibility refactor (#2023)
* Skip urlRegex if it's used as a filter
* Add getRequiredContentScriptRegistrationPermissions function
* Add a reentrant check to google-docs.js
* Remove script node
* Move forceGoogleDocsHtmlRendering check into google-docs.js
* Replace document-start.js usage with google-docs.js
* Remove documentStart handling
* Add missing parameter descriptions
Diffstat (limited to 'ext/js/document-start.js')
-rw-r--r-- | ext/js/document-start.js | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/ext/js/document-start.js b/ext/js/document-start.js deleted file mode 100644 index de1c2403..00000000 --- a/ext/js/document-start.js +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Copyright (C) 2021 Yomichan Authors - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see <https://www.gnu.org/licenses/>. - */ - -chrome.runtime.sendMessage({action: 'documentStart'}, () => void chrome.runtime.lastError); |