├── .env.example ├── .github └── workflows │ └── static.yml ├── .gitignore ├── .markdownlint.json ├── CONTRIBUTING.md ├── GEMINI.md ├── LICENSE.txt ├── README.md ├── babel.config.js ├── build.sh ├── docs ├── contact-us.mdx ├── export-or-import-rules.mdx ├── faq.mdx ├── introduction.mdx ├── library.mdx ├── privacy-policy.mdx ├── rule-settings.mdx ├── terms-of-use.mdx ├── troubleshooting.mdx ├── tutorial-add-query-params.mdx ├── tutorial-redirect-to-another-website.mdx ├── tutorial-remove-query-params.mdx └── vs-other-tools.mdx ├── docusaurus.config.ts ├── eslint.config.cjs ├── i18n ├── bg │ ├── code.json │ ├── docusaurus-plugin-content-blog │ │ ├── .gitkeep │ │ └── options.json │ ├── docusaurus-plugin-content-docs │ │ ├── current.json │ │ └── current │ │ │ ├── contact-us.mdx │ │ │ ├── export-or-import-rules.mdx │ │ │ ├── faq.mdx │ │ │ ├── introduction.mdx │ │ │ ├── library.mdx │ │ │ ├── rule-settings.mdx │ │ │ ├── troubleshooting.mdx │ │ │ ├── tutorial-add-query-params.mdx │ │ │ ├── tutorial-redirect-to-another-website.mdx │ │ │ ├── tutorial-remove-query-params.mdx │ │ │ └── vs-other-tools.mdx │ └── docusaurus-theme-classic │ │ ├── footer.json │ │ └── navbar.json ├── cs │ ├── code.json │ ├── docusaurus-plugin-content-blog │ │ ├── .gitkeep │ │ └── options.json │ ├── docusaurus-plugin-content-docs │ │ ├── current.json │ │ └── current │ │ │ ├── contact-us.mdx │ │ │ ├── export-or-import-rules.mdx │ │ │ ├── faq.mdx │ │ │ ├── introduction.mdx │ │ │ ├── library.mdx │ │ │ ├── rule-settings.mdx │ │ │ ├── troubleshooting.mdx │ │ │ ├── tutorial-add-query-params.mdx │ │ │ ├── tutorial-redirect-to-another-website.mdx │ │ │ ├── tutorial-remove-query-params.mdx │ │ │ └── vs-other-tools.mdx │ └── docusaurus-theme-classic │ │ ├── footer.json │ │ └── navbar.json ├── da │ ├── code.json │ ├── docusaurus-plugin-content-blog │ │ ├── .gitkeep │ │ └── options.json │ ├── docusaurus-plugin-content-docs │ │ ├── current.json │ │ ├── current │ │ │ ├── contact-us.mdx │ │ │ ├── export-or-import-rules.mdx │ │ │ ├── faq.mdx │ │ │ ├── introduction.mdx │ │ │ ├── library.mdx │ │ │ ├── rule-settings.mdx │ │ │ ├── troubleshooting.mdx │ │ │ ├── tutorial-add-query-params.mdx │ │ │ ├── tutorial-redirect-to-another-website.mdx │ │ │ ├── tutorial-remove-query-params.mdx │ │ │ └── vs-other-tools.mdx │ │ └── rule-settings.mdx │ └── docusaurus-theme-classic │ │ ├── footer.json │ │ └── navbar.json ├── de │ ├── code.json │ ├── docusaurus-plugin-content-blog │ │ ├── .gitkeep │ │ └── options.json │ ├── docusaurus-plugin-content-docs │ │ ├── current.json │ │ └── current │ │ │ ├── contact-us.mdx │ │ │ ├── export-or-import-rules.mdx │ │ │ ├── faq.mdx │ │ │ ├── introduction.mdx │ │ │ ├── library.mdx │ │ │ ├── rule-settings.mdx │ │ │ ├── troubleshooting.mdx │ │ │ ├── tutorial-add-query-params.mdx │ │ │ ├── tutorial-redirect-to-another-website.mdx │ │ │ ├── tutorial-remove-query-params.mdx │ │ │ └── vs-other-tools.mdx │ └── docusaurus-theme-classic │ │ ├── footer.json │ │ └── navbar.json ├── el │ ├── code.json │ ├── docusaurus-plugin-content-blog │ │ ├── .gitkeep │ │ └── options.json │ ├── docusaurus-plugin-content-docs │ │ ├── current.json │ │ └── current │ │ │ ├── contact-us.mdx │ │ │ ├── export-or-import-rules.mdx │ │ │ ├── faq.mdx │ │ │ ├── introduction.mdx │ │ │ ├── library.mdx │ │ │ ├── rule-settings.mdx │ │ │ ├── troubleshooting.mdx │ │ │ ├── tutorial-add-query-params.mdx │ │ │ ├── tutorial-redirect-to-another-website.mdx │ │ │ ├── tutorial-remove-query-params.mdx │ │ │ └── vs-other-tools.mdx │ └── docusaurus-theme-classic │ │ ├── footer.json │ │ └── navbar.json ├── en │ ├── code.json │ ├── docusaurus-plugin-content-blog │ │ └── options.json │ ├── docusaurus-plugin-content-docs │ │ └── current.json │ └── docusaurus-theme-classic │ │ ├── footer.json │ │ └── navbar.json ├── es │ ├── code.json │ ├── docusaurus-plugin-content-blog │ │ ├── .gitkeep │ │ └── options.json │ ├── docusaurus-plugin-content-docs │ │ ├── current.json │ │ └── current │ │ │ ├── contact-us.mdx │ │ │ ├── export-or-import-rules.mdx │ │ │ ├── faq.mdx │ │ │ ├── introduction.mdx │ │ │ ├── library.mdx │ │ │ ├── rule-settings.mdx │ │ │ ├── troubleshooting.mdx │ │ │ ├── tutorial-add-query-params.mdx │ │ │ ├── tutorial-redirect-to-another-website.mdx │ │ │ ├── tutorial-remove-query-params.mdx │ │ │ └── vs-other-tools.mdx │ └── docusaurus-theme-classic │ │ ├── footer.json │ │ └── navbar.json ├── et │ ├── code.json │ ├── docusaurus-plugin-content-blog │ │ ├── .gitkeep │ │ └── options.json │ ├── docusaurus-plugin-content-docs │ │ ├── current.json │ │ └── current │ │ │ ├── contact-us.mdx │ │ │ ├── export-or-import-rules.mdx │ │ │ ├── faq.mdx │ │ │ ├── introduction.mdx │ │ │ ├── library.mdx │ │ │ ├── rule-settings.mdx │ │ │ ├── troubleshooting.mdx │ │ │ ├── tutorial-add-query-params.mdx │ │ │ ├── tutorial-redirect-to-another-website.mdx │ │ │ ├── tutorial-remove-query-params.mdx │ │ │ └── vs-other-tools.mdx │ └── docusaurus-theme-classic │ │ ├── footer.json │ │ └── navbar.json ├── fi │ ├── code.json │ ├── docusaurus-plugin-content-blog │ │ ├── .gitkeep │ │ └── options.json │ ├── docusaurus-plugin-content-docs │ │ ├── current.json │ │ └── current │ │ │ ├── contact-us.mdx │ │ │ ├── export-or-import-rules.mdx │ │ │ ├── faq.mdx │ │ │ ├── introduction.mdx │ │ │ ├── library.mdx │ │ │ ├── rule-settings.mdx │ │ │ ├── troubleshooting.mdx │ │ │ ├── tutorial-add-query-params.mdx │ │ │ ├── tutorial-redirect-to-another-website.mdx │ │ │ ├── tutorial-remove-query-params.mdx │ │ │ └── vs-other-tools.mdx │ └── docusaurus-theme-classic │ │ ├── footer.json │ │ └── navbar.json ├── fr │ ├── code.json │ ├── docusaurus-plugin-content-blog │ │ ├── .gitkeep │ │ └── options.json │ ├── docusaurus-plugin-content-docs │ │ ├── current.json │ │ └── current │ │ │ ├── contact-us.mdx │ │ │ ├── export-or-import-rules.mdx │ │ │ ├── faq.mdx │ │ │ ├── introduction.mdx │ │ │ ├── library.mdx │ │ │ ├── rule-settings.mdx │ │ │ ├── troubleshooting.mdx │ │ │ ├── tutorial-add-query-params.mdx │ │ │ ├── tutorial-redirect-to-another-website.mdx │ │ │ ├── tutorial-remove-query-params.mdx │ │ │ └── vs-other-tools.mdx │ └── docusaurus-theme-classic │ │ ├── footer.json │ │ └── navbar.json ├── hu │ ├── code.json │ ├── docusaurus-plugin-content-blog │ │ ├── .gitkeep │ │ └── options.json │ ├── docusaurus-plugin-content-docs │ │ ├── current.json │ │ └── current │ │ │ ├── contact-us.mdx │ │ │ ├── export-or-import-rules.mdx │ │ │ ├── faq.mdx │ │ │ ├── introduction.mdx │ │ │ ├── library.mdx │ │ │ ├── rule-settings.mdx │ │ │ ├── troubleshooting.mdx │ │ │ ├── tutorial-add-query-params.mdx │ │ │ ├── tutorial-redirect-to-another-website.mdx │ │ │ ├── tutorial-remove-query-params.mdx │ │ │ └── vs-other-tools.mdx │ └── docusaurus-theme-classic │ │ ├── footer.json │ │ └── navbar.json ├── id │ ├── code.json │ ├── docusaurus-plugin-content-blog │ │ ├── .gitkeep │ │ └── options.json │ ├── docusaurus-plugin-content-docs │ │ ├── current.json │ │ └── current │ │ │ ├── contact-us.mdx │ │ │ ├── export-or-import-rules.mdx │ │ │ ├── faq.mdx │ │ │ ├── introduction.mdx │ │ │ ├── library.mdx │ │ │ ├── rule-settings.mdx │ │ │ ├── troubleshooting.mdx │ │ │ ├── tutorial-add-query-params.mdx │ │ │ ├── tutorial-redirect-to-another-website.mdx │ │ │ ├── tutorial-remove-query-params.mdx │ │ │ └── vs-other-tools.mdx │ └── docusaurus-theme-classic │ │ ├── footer.json │ │ └── navbar.json ├── it │ ├── code.json │ ├── docusaurus-plugin-content-blog │ │ ├── .gitkeep │ │ └── options.json │ ├── docusaurus-plugin-content-docs │ │ ├── current.json │ │ └── current │ │ │ ├── contact-us.mdx │ │ │ ├── export-or-import-rules.mdx │ │ │ ├── faq.mdx │ │ │ ├── introduction.mdx │ │ │ ├── library.mdx │ │ │ ├── rule-settings.mdx │ │ │ ├── troubleshooting.mdx │ │ │ ├── tutorial-add-query-params.mdx │ │ │ ├── tutorial-redirect-to-another-website.mdx │ │ │ ├── tutorial-remove-query-params.mdx │ │ │ └── vs-other-tools.mdx │ └── docusaurus-theme-classic │ │ ├── footer.json │ │ └── navbar.json ├── ja │ ├── code.json │ ├── docusaurus-plugin-content-blog │ │ ├── .gitkeep │ │ └── options.json │ ├── docusaurus-plugin-content-docs │ │ ├── current.json │ │ └── current │ │ │ ├── contact-us.mdx │ │ │ ├── export-or-import-rules.mdx │ │ │ ├── faq.mdx │ │ │ ├── introduction.mdx │ │ │ ├── library.mdx │ │ │ ├── rule-settings.mdx │ │ │ ├── troubleshooting.mdx │ │ │ ├── tutorial-add-query-params.mdx │ │ │ ├── tutorial-redirect-to-another-website.mdx │ │ │ ├── tutorial-remove-query-params.mdx │ │ │ └── vs-other-tools.mdx │ └── docusaurus-theme-classic │ │ ├── footer.json │ │ └── navbar.json ├── ko │ ├── code.json │ ├── docusaurus-plugin-content-blog │ │ ├── .gitkeep │ │ └── options.json │ ├── docusaurus-plugin-content-docs │ │ ├── current.json │ │ └── current │ │ │ ├── contact-us.mdx │ │ │ ├── export-or-import-rules.mdx │ │ │ ├── faq.mdx │ │ │ ├── introduction.mdx │ │ │ ├── library.mdx │ │ │ ├── rule-settings.mdx │ │ │ ├── troubleshooting.mdx │ │ │ ├── tutorial-add-query-params.mdx │ │ │ ├── tutorial-redirect-to-another-website.mdx │ │ │ ├── tutorial-remove-query-params.mdx │ │ │ └── vs-other-tools.mdx │ └── docusaurus-theme-classic │ │ ├── footer.json │ │ └── navbar.json ├── lt │ ├── code.json │ ├── docusaurus-plugin-content-blog │ │ ├── .gitkeep │ │ └── options.json │ ├── docusaurus-plugin-content-docs │ │ ├── current.json │ │ └── current │ │ │ ├── contact-us.mdx │ │ │ ├── export-or-import-rules.mdx │ │ │ ├── faq.mdx │ │ │ ├── introduction.mdx │ │ │ ├── library.mdx │ │ │ ├── rule-settings.mdx │ │ │ ├── troubleshooting.mdx │ │ │ ├── tutorial-add-query-params.mdx │ │ │ ├── tutorial-redirect-to-another-website.mdx │ │ │ ├── tutorial-remove-query-params.mdx │ │ │ └── vs-other-tools.mdx │ └── docusaurus-theme-classic │ │ ├── footer.json │ │ └── navbar.json ├── lv │ ├── code.json │ ├── docusaurus-plugin-content-blog │ │ ├── .gitkeep │ │ └── options.json │ ├── docusaurus-plugin-content-docs │ │ ├── current.json │ │ └── current │ │ │ ├── contact-us.mdx │ │ │ ├── export-or-import-rules.mdx │ │ │ ├── faq.mdx │ │ │ ├── introduction.mdx │ │ │ ├── library.mdx │ │ │ ├── rule-settings.mdx │ │ │ ├── troubleshooting.mdx │ │ │ ├── tutorial-add-query-params.mdx │ │ │ ├── tutorial-redirect-to-another-website.mdx │ │ │ ├── tutorial-remove-query-params.mdx │ │ │ └── vs-other-tools.mdx │ └── docusaurus-theme-classic │ │ ├── footer.json │ │ └── navbar.json ├── nl │ ├── code.json │ ├── docusaurus-plugin-content-blog │ │ ├── .gitkeep │ │ └── options.json │ ├── docusaurus-plugin-content-docs │ │ ├── current.json │ │ └── current │ │ │ ├── contact-us.mdx │ │ │ ├── export-or-import-rules.mdx │ │ │ ├── faq.mdx │ │ │ ├── introduction.mdx │ │ │ ├── library.mdx │ │ │ ├── rule-settings.mdx │ │ │ ├── troubleshooting.mdx │ │ │ ├── tutorial-add-query-params.mdx │ │ │ ├── tutorial-redirect-to-another-website.mdx │ │ │ ├── tutorial-remove-query-params.mdx │ │ │ └── vs-other-tools.mdx │ └── docusaurus-theme-classic │ │ ├── footer.json │ │ └── navbar.json ├── pl │ ├── code.json │ ├── docusaurus-plugin-content-blog │ │ ├── .gitkeep │ │ └── options.json │ ├── docusaurus-plugin-content-docs │ │ ├── current.json │ │ └── current │ │ │ ├── contact-us.mdx │ │ │ ├── export-or-import-rules.mdx │ │ │ ├── faq.mdx │ │ │ ├── introduction.mdx │ │ │ ├── library.mdx │ │ │ ├── rule-settings.mdx │ │ │ ├── troubleshooting.mdx │ │ │ ├── tutorial-add-query-params.mdx │ │ │ ├── tutorial-redirect-to-another-website.mdx │ │ │ ├── tutorial-remove-query-params.mdx │ │ │ └── vs-other-tools.mdx │ └── docusaurus-theme-classic │ │ ├── footer.json │ │ └── navbar.json ├── pt-br │ ├── code.json │ ├── docusaurus-plugin-content-blog │ │ ├── .gitkeep │ │ └── options.json │ ├── docusaurus-plugin-content-docs │ │ ├── current.json │ │ └── current │ │ │ ├── contact-us.mdx │ │ │ ├── export-or-import-rules.mdx │ │ │ ├── faq.mdx │ │ │ ├── introduction.mdx │ │ │ ├── library.mdx │ │ │ ├── rule-settings.mdx │ │ │ ├── troubleshooting.mdx │ │ │ ├── tutorial-add-query-params.mdx │ │ │ ├── tutorial-redirect-to-another-website.mdx │ │ │ ├── tutorial-remove-query-params.mdx │ │ │ └── vs-other-tools.mdx │ └── docusaurus-theme-classic │ │ ├── footer.json │ │ └── navbar.json ├── pt-pt │ ├── code.json │ ├── docusaurus-plugin-content-blog │ │ ├── .gitkeep │ │ └── options.json │ ├── docusaurus-plugin-content-docs │ │ ├── current.json │ │ └── current │ │ │ ├── contact-us.mdx │ │ │ ├── export-or-import-rules.mdx │ │ │ ├── faq.mdx │ │ │ ├── introduction.mdx │ │ │ ├── library.mdx │ │ │ ├── rule-settings.mdx │ │ │ ├── troubleshooting.mdx │ │ │ ├── tutorial-add-query-params.mdx │ │ │ ├── tutorial-redirect-to-another-website.mdx │ │ │ ├── tutorial-remove-query-params.mdx │ │ │ └── vs-other-tools.mdx │ └── docusaurus-theme-classic │ │ ├── footer.json │ │ └── navbar.json ├── ro │ ├── code.json │ ├── docusaurus-plugin-content-blog │ │ ├── .gitkeep │ │ └── options.json │ ├── docusaurus-plugin-content-docs │ │ ├── current.json │ │ └── current │ │ │ ├── contact-us.mdx │ │ │ ├── export-or-import-rules.mdx │ │ │ ├── faq.mdx │ │ │ ├── introduction.mdx │ │ │ ├── library.mdx │ │ │ ├── rule-settings.mdx │ │ │ ├── troubleshooting.mdx │ │ │ ├── tutorial-add-query-params.mdx │ │ │ ├── tutorial-redirect-to-another-website.mdx │ │ │ ├── tutorial-remove-query-params.mdx │ │ │ └── vs-other-tools.mdx │ └── docusaurus-theme-classic │ │ ├── footer.json │ │ └── navbar.json ├── ru │ ├── code.json │ ├── docusaurus-plugin-content-blog │ │ ├── .gitkeep │ │ └── options.json │ ├── docusaurus-plugin-content-docs │ │ ├── current.json │ │ └── current │ │ │ ├── contact-us.mdx │ │ │ ├── export-or-import-rules.mdx │ │ │ ├── faq.mdx │ │ │ ├── introduction.mdx │ │ │ ├── library.mdx │ │ │ ├── rule-settings.mdx │ │ │ ├── troubleshooting.mdx │ │ │ ├── tutorial-add-query-params.mdx │ │ │ ├── tutorial-redirect-to-another-website.mdx │ │ │ ├── tutorial-remove-query-params.mdx │ │ │ └── vs-other-tools.mdx │ └── docusaurus-theme-classic │ │ ├── footer.json │ │ └── navbar.json ├── sk │ ├── code.json │ ├── docusaurus-plugin-content-blog │ │ ├── .gitkeep │ │ └── options.json │ ├── docusaurus-plugin-content-docs │ │ ├── current.json │ │ └── current │ │ │ ├── contact-us.mdx │ │ │ ├── export-or-import-rules.mdx │ │ │ ├── faq.mdx │ │ │ ├── introduction.mdx │ │ │ ├── library.mdx │ │ │ ├── rule-settings.mdx │ │ │ ├── troubleshooting.mdx │ │ │ ├── tutorial-add-query-params.mdx │ │ │ ├── tutorial-redirect-to-another-website.mdx │ │ │ ├── tutorial-remove-query-params.mdx │ │ │ └── vs-other-tools.mdx │ └── docusaurus-theme-classic │ │ ├── footer.json │ │ └── navbar.json ├── sl │ ├── code.json │ ├── docusaurus-plugin-content-blog │ │ ├── .gitkeep │ │ └── options.json │ ├── docusaurus-plugin-content-docs │ │ ├── current.json │ │ └── current │ │ │ ├── contact-us.mdx │ │ │ ├── export-or-import-rules.mdx │ │ │ ├── faq.mdx │ │ │ ├── introduction.mdx │ │ │ ├── library.mdx │ │ │ ├── rule-settings.mdx │ │ │ ├── troubleshooting.mdx │ │ │ ├── tutorial-add-query-params.mdx │ │ │ ├── tutorial-redirect-to-another-website.mdx │ │ │ ├── tutorial-remove-query-params.mdx │ │ │ └── vs-other-tools.mdx │ └── docusaurus-theme-classic │ │ ├── footer.json │ │ └── navbar.json ├── sv │ ├── code.json │ ├── docusaurus-plugin-content-blog │ │ ├── .gitkeep │ │ └── options.json │ ├── docusaurus-plugin-content-docs │ │ ├── current.json │ │ └── current │ │ │ ├── contact-us.mdx │ │ │ ├── export-or-import-rules.mdx │ │ │ ├── faq.mdx │ │ │ ├── introduction.mdx │ │ │ ├── library.mdx │ │ │ ├── rule-settings.mdx │ │ │ ├── troubleshooting.mdx │ │ │ ├── tutorial-add-query-params.mdx │ │ │ ├── tutorial-redirect-to-another-website.mdx │ │ │ ├── tutorial-remove-query-params.mdx │ │ │ └── vs-other-tools.mdx │ └── docusaurus-theme-classic │ │ ├── footer.json │ │ └── navbar.json ├── tr │ ├── code.json │ ├── docusaurus-plugin-content-blog │ │ ├── .gitkeep │ │ └── options.json │ ├── docusaurus-plugin-content-docs │ │ ├── current.json │ │ └── current │ │ │ ├── contact-us.mdx │ │ │ ├── export-or-import-rules.mdx │ │ │ ├── faq.mdx │ │ │ ├── introduction.mdx │ │ │ ├── library.mdx │ │ │ ├── rule-settings.mdx │ │ │ ├── troubleshooting.mdx │ │ │ ├── tutorial-add-query-params.mdx │ │ │ ├── tutorial-redirect-to-another-website.mdx │ │ │ ├── tutorial-remove-query-params.mdx │ │ │ └── vs-other-tools.mdx │ └── docusaurus-theme-classic │ │ ├── footer.json │ │ └── navbar.json ├── uk │ ├── code.json │ ├── docusaurus-plugin-content-blog │ │ ├── .gitkeep │ │ └── options.json │ ├── docusaurus-plugin-content-docs │ │ ├── current.json │ │ └── current │ │ │ ├── contact-us.mdx │ │ │ ├── export-or-import-rules.mdx │ │ │ ├── faq.mdx │ │ │ ├── introduction.mdx │ │ │ ├── library.mdx │ │ │ ├── rule-settings.mdx │ │ │ ├── troubleshooting.mdx │ │ │ ├── tutorial-add-query-params.mdx │ │ │ ├── tutorial-redirect-to-another-website.mdx │ │ │ ├── tutorial-remove-query-params.mdx │ │ │ └── vs-other-tools.mdx │ └── docusaurus-theme-classic │ │ ├── footer.json │ │ └── navbar.json └── zh-hans │ ├── code.json │ ├── docusaurus-plugin-content-blog │ ├── .gitkeep │ └── options.json │ ├── docusaurus-plugin-content-docs │ ├── current.json │ └── current │ │ ├── contact-us.mdx │ │ ├── export-or-import-rules.mdx │ │ ├── faq.mdx │ │ ├── introduction.mdx │ │ ├── library.mdx │ │ ├── rule-settings.mdx │ │ ├── troubleshooting.mdx │ │ ├── tutorial-add-query-params.mdx │ │ ├── tutorial-redirect-to-another-website.mdx │ │ ├── tutorial-remove-query-params.mdx │ │ └── vs-other-tools.mdx │ └── docusaurus-theme-classic │ ├── footer.json │ └── navbar.json ├── library ├── README.md ├── categories.json └── rule-sets │ ├── 0_example-rule │ ├── i18n │ │ ├── bg │ │ │ └── messages.json │ │ ├── cs │ │ │ └── messages.json │ │ ├── da │ │ │ └── messages.json │ │ ├── de │ │ │ └── messages.json │ │ ├── el │ │ │ └── messages.json │ │ ├── es │ │ │ └── messages.json │ │ ├── et │ │ │ └── messages.json │ │ ├── fi │ │ │ └── messages.json │ │ ├── fr │ │ │ └── messages.json │ │ ├── hu │ │ │ └── messages.json │ │ ├── id │ │ │ └── messages.json │ │ ├── it │ │ │ └── messages.json │ │ ├── ja │ │ │ └── messages.json │ │ ├── ko │ │ │ └── messages.json │ │ ├── lt │ │ │ └── messages.json │ │ ├── lv │ │ │ └── messages.json │ │ ├── nl │ │ │ └── messages.json │ │ ├── pl │ │ │ └── messages.json │ │ ├── pt-br │ │ │ └── messages.json │ │ ├── pt-pt │ │ │ └── messages.json │ │ ├── ro │ │ │ └── messages.json │ │ ├── ru │ │ │ └── messages.json │ │ ├── sk │ │ │ └── messages.json │ │ ├── sl │ │ │ └── messages.json │ │ ├── sv │ │ │ └── messages.json │ │ ├── tr │ │ │ └── messages.json │ │ ├── uk │ │ │ └── messages.json │ │ └── zh-hans │ │ │ └── messages.json │ ├── metadata.json │ └── rule-set.json │ ├── 10_DELETED_reddit-new-layout │ └── .gitkeep │ ├── 11_reddit-old-layout │ ├── cover.webp │ ├── i18n │ │ ├── bg │ │ │ └── messages.json │ │ ├── cs │ │ │ └── messages.json │ │ ├── da │ │ │ └── messages.json │ │ ├── de │ │ │ └── messages.json │ │ ├── el │ │ │ └── messages.json │ │ ├── es │ │ │ └── messages.json │ │ ├── et │ │ │ └── messages.json │ │ ├── fi │ │ │ └── messages.json │ │ ├── fr │ │ │ └── messages.json │ │ ├── hu │ │ │ └── messages.json │ │ ├── id │ │ │ └── messages.json │ │ ├── it │ │ │ └── messages.json │ │ ├── ja │ │ │ └── messages.json │ │ ├── ko │ │ │ └── messages.json │ │ ├── lt │ │ │ └── messages.json │ │ ├── lv │ │ │ └── messages.json │ │ ├── nl │ │ │ └── messages.json │ │ ├── pl │ │ │ └── messages.json │ │ ├── pt-br │ │ │ └── messages.json │ │ ├── pt-pt │ │ │ └── messages.json │ │ ├── ro │ │ │ └── messages.json │ │ ├── ru │ │ │ └── messages.json │ │ ├── sk │ │ │ └── messages.json │ │ ├── sl │ │ │ └── messages.json │ │ ├── sv │ │ │ └── messages.json │ │ ├── tr │ │ │ └── messages.json │ │ ├── uk │ │ │ └── messages.json │ │ └── zh-hans │ │ │ └── messages.json │ ├── metadata.json │ └── rule-set.json │ ├── 12_google-search-disable-ai │ ├── cover.webp │ ├── i18n │ │ ├── bg │ │ │ └── messages.json │ │ ├── cs │ │ │ └── messages.json │ │ ├── da │ │ │ └── messages.json │ │ ├── de │ │ │ └── messages.json │ │ ├── el │ │ │ └── messages.json │ │ ├── es │ │ │ └── messages.json │ │ ├── et │ │ │ └── messages.json │ │ ├── fi │ │ │ └── messages.json │ │ ├── fr │ │ │ └── messages.json │ │ ├── hu │ │ │ └── messages.json │ │ ├── id │ │ │ └── messages.json │ │ ├── it │ │ │ └── messages.json │ │ ├── ja │ │ │ └── messages.json │ │ ├── ko │ │ │ └── messages.json │ │ ├── lt │ │ │ └── messages.json │ │ ├── lv │ │ │ └── messages.json │ │ ├── nl │ │ │ └── messages.json │ │ ├── pl │ │ │ └── messages.json │ │ ├── pt-br │ │ │ └── messages.json │ │ ├── pt-pt │ │ │ └── messages.json │ │ ├── ro │ │ │ └── messages.json │ │ ├── ru │ │ │ └── messages.json │ │ ├── sk │ │ │ └── messages.json │ │ ├── sl │ │ │ └── messages.json │ │ ├── sv │ │ │ └── messages.json │ │ ├── tr │ │ │ └── messages.json │ │ ├── uk │ │ │ └── messages.json │ │ └── zh-hans │ │ │ └── messages.json │ ├── metadata.json │ └── rule-set.json │ ├── 13_youtube_watch_embed │ ├── cover.webp │ ├── i18n │ │ ├── bg │ │ │ └── messages.json │ │ ├── cs │ │ │ └── messages.json │ │ ├── da │ │ │ └── messages.json │ │ ├── de │ │ │ └── messages.json │ │ ├── el │ │ │ └── messages.json │ │ ├── es │ │ │ └── messages.json │ │ ├── et │ │ │ └── messages.json │ │ ├── fi │ │ │ └── messages.json │ │ ├── fr │ │ │ └── messages.json │ │ ├── hu │ │ │ └── messages.json │ │ ├── id │ │ │ └── messages.json │ │ ├── it │ │ │ └── messages.json │ │ ├── ja │ │ │ └── messages.json │ │ ├── ko │ │ │ └── messages.json │ │ ├── lt │ │ │ └── messages.json │ │ ├── lv │ │ │ └── messages.json │ │ ├── nl │ │ │ └── messages.json │ │ ├── pl │ │ │ └── messages.json │ │ ├── pt-br │ │ │ └── messages.json │ │ ├── pt-pt │ │ │ └── messages.json │ │ ├── ro │ │ │ └── messages.json │ │ ├── ru │ │ │ └── messages.json │ │ ├── sk │ │ │ └── messages.json │ │ ├── sl │ │ │ └── messages.json │ │ ├── sv │ │ │ └── messages.json │ │ ├── tr │ │ │ └── messages.json │ │ ├── uk │ │ │ └── messages.json │ │ └── zh-hans │ │ │ └── messages.json │ ├── metadata.json │ └── rule-set.json │ ├── 14_facebook_always_show_most_recent_feed │ ├── cover.webp │ ├── i18n │ │ ├── bg │ │ │ └── messages.json │ │ ├── cs │ │ │ └── messages.json │ │ ├── da │ │ │ └── messages.json │ │ ├── de │ │ │ └── messages.json │ │ ├── el │ │ │ └── messages.json │ │ ├── es │ │ │ └── messages.json │ │ ├── et │ │ │ └── messages.json │ │ ├── fi │ │ │ └── messages.json │ │ ├── fr │ │ │ └── messages.json │ │ ├── hu │ │ │ └── messages.json │ │ ├── id │ │ │ └── messages.json │ │ ├── it │ │ │ └── messages.json │ │ ├── ja │ │ │ └── messages.json │ │ ├── ko │ │ │ └── messages.json │ │ ├── lt │ │ │ └── messages.json │ │ ├── lv │ │ │ └── messages.json │ │ ├── nl │ │ │ └── messages.json │ │ ├── pl │ │ │ └── messages.json │ │ ├── pt-br │ │ │ └── messages.json │ │ ├── pt-pt │ │ │ └── messages.json │ │ ├── ro │ │ │ └── messages.json │ │ ├── ru │ │ │ └── messages.json │ │ ├── sk │ │ │ └── messages.json │ │ ├── sl │ │ │ └── messages.json │ │ ├── sv │ │ │ └── messages.json │ │ ├── tr │ │ │ └── messages.json │ │ ├── uk │ │ │ └── messages.json │ │ └── zh-hans │ │ │ └── messages.json │ ├── metadata.json │ └── rule-set.json │ ├── 15_google_maps_to_apple_maps │ ├── cover.webp │ ├── i18n │ │ ├── bg │ │ │ └── messages.json │ │ ├── cs │ │ │ └── messages.json │ │ ├── da │ │ │ └── messages.json │ │ ├── de │ │ │ └── messages.json │ │ ├── el │ │ │ └── messages.json │ │ ├── es │ │ │ └── messages.json │ │ ├── et │ │ │ └── messages.json │ │ ├── fi │ │ │ └── messages.json │ │ ├── fr │ │ │ └── messages.json │ │ ├── hu │ │ │ └── messages.json │ │ ├── id │ │ │ └── messages.json │ │ ├── it │ │ │ └── messages.json │ │ ├── ja │ │ │ └── messages.json │ │ ├── ko │ │ │ └── messages.json │ │ ├── lt │ │ │ └── messages.json │ │ ├── lv │ │ │ └── messages.json │ │ ├── nl │ │ │ └── messages.json │ │ ├── pl │ │ │ └── messages.json │ │ ├── pt-br │ │ │ └── messages.json │ │ ├── pt-pt │ │ │ └── messages.json │ │ ├── ro │ │ │ └── messages.json │ │ ├── ru │ │ │ └── messages.json │ │ ├── sk │ │ │ └── messages.json │ │ ├── sl │ │ │ └── messages.json │ │ ├── sv │ │ │ └── messages.json │ │ ├── tr │ │ │ └── messages.json │ │ ├── uk │ │ │ └── messages.json │ │ └── zh-hans │ │ │ └── messages.json │ ├── metadata.json │ └── rule-set.json │ ├── 16_google-search-to-kagi │ └── i18n │ │ └── sk │ │ └── messages.json │ ├── 16_google_search_to_kagi │ ├── cover.webp │ ├── i18n │ │ ├── bg │ │ │ └── messages.json │ │ ├── cs │ │ │ └── messages.json │ │ ├── da │ │ │ └── messages.json │ │ ├── de │ │ │ └── messages.json │ │ ├── el │ │ │ └── messages.json │ │ ├── es │ │ │ └── messages.json │ │ ├── et │ │ │ └── messages.json │ │ ├── fi │ │ │ └── messages.json │ │ ├── fr │ │ │ └── messages.json │ │ ├── hu │ │ │ └── messages.json │ │ ├── id │ │ │ └── messages.json │ │ ├── it │ │ │ └── messages.json │ │ ├── ja │ │ │ └── messages.json │ │ ├── ko │ │ │ └── messages.json │ │ ├── lt │ │ │ └── messages.json │ │ ├── lv │ │ │ └── messages.json │ │ ├── nl │ │ │ └── messages.json │ │ ├── pl │ │ │ └── messages.json │ │ ├── pt-br │ │ │ └── messages.json │ │ ├── pt-pt │ │ │ └── messages.json │ │ ├── ro │ │ │ └── messages.json │ │ ├── ru │ │ │ └── messages.json │ │ ├── sk │ │ │ └── messages.json │ │ ├── sl │ │ │ └── messages.json │ │ ├── sv │ │ │ └── messages.json │ │ ├── tr │ │ │ └── messages.json │ │ ├── uk │ │ │ └── messages.json │ │ └── zh-hans │ │ │ └── messages.json │ ├── metadata.json │ └── rule-set.json │ ├── 17_google_search_to_startpage │ ├── cover.webp │ ├── i18n │ │ ├── bg │ │ │ └── messages.json │ │ ├── cs │ │ │ └── messages.json │ │ ├── da │ │ │ └── messages.json │ │ ├── de │ │ │ └── messages.json │ │ ├── el │ │ │ └── messages.json │ │ ├── es │ │ │ └── messages.json │ │ ├── et │ │ │ └── messages.json │ │ ├── fi │ │ │ └── messages.json │ │ ├── fr │ │ │ └── messages.json │ │ ├── hu │ │ │ └── messages.json │ │ ├── id │ │ │ └── messages.json │ │ ├── it │ │ │ └── messages.json │ │ ├── ja │ │ │ └── messages.json │ │ ├── ko │ │ │ └── messages.json │ │ ├── lt │ │ │ └── messages.json │ │ ├── lv │ │ │ └── messages.json │ │ ├── nl │ │ │ └── messages.json │ │ ├── pl │ │ │ └── messages.json │ │ ├── pt-br │ │ │ └── messages.json │ │ ├── pt-pt │ │ │ └── messages.json │ │ ├── ro │ │ │ └── messages.json │ │ ├── ru │ │ │ └── messages.json │ │ ├── sk │ │ │ └── messages.json │ │ ├── sl │ │ │ └── messages.json │ │ ├── sv │ │ │ └── messages.json │ │ ├── tr │ │ │ └── messages.json │ │ ├── uk │ │ │ └── messages.json │ │ └── zh-hans │ │ │ └── messages.json │ ├── metadata.json │ └── rule-set.json │ ├── 18_google_search_to_brave_search │ ├── cover.webp │ ├── i18n │ │ ├── bg │ │ │ └── messages.json │ │ ├── cs │ │ │ └── messages.json │ │ ├── da │ │ │ └── messages.json │ │ ├── de │ │ │ └── messages.json │ │ ├── el │ │ │ └── messages.json │ │ ├── es │ │ │ └── messages.json │ │ ├── et │ │ │ └── messages.json │ │ ├── fi │ │ │ └── messages.json │ │ ├── fr │ │ │ └── messages.json │ │ ├── hu │ │ │ └── messages.json │ │ ├── id │ │ │ └── messages.json │ │ ├── it │ │ │ └── messages.json │ │ ├── ja │ │ │ └── messages.json │ │ ├── ko │ │ │ └── messages.json │ │ ├── lt │ │ │ └── messages.json │ │ ├── lv │ │ │ └── messages.json │ │ ├── nl │ │ │ └── messages.json │ │ ├── pl │ │ │ └── messages.json │ │ ├── pt-br │ │ │ └── messages.json │ │ ├── pt-pt │ │ │ └── messages.json │ │ ├── ro │ │ │ └── messages.json │ │ ├── ru │ │ │ └── messages.json │ │ ├── sk │ │ │ └── messages.json │ │ ├── sl │ │ │ └── messages.json │ │ ├── sv │ │ │ └── messages.json │ │ ├── tr │ │ │ └── messages.json │ │ ├── uk │ │ │ └── messages.json │ │ └── zh-hans │ │ │ └── messages.json │ ├── metadata.json │ └── rule-set.json │ ├── 19_youtube_shorts_to_normal_videos │ ├── cover.webp │ ├── i18n │ │ ├── bg │ │ │ └── messages.json │ │ ├── cs │ │ │ └── messages.json │ │ ├── da │ │ │ └── messages.json │ │ ├── de │ │ │ └── messages.json │ │ ├── el │ │ │ └── messages.json │ │ ├── es │ │ │ └── messages.json │ │ ├── et │ │ │ └── messages.json │ │ ├── fi │ │ │ └── messages.json │ │ ├── fr │ │ │ └── messages.json │ │ ├── hu │ │ │ └── messages.json │ │ ├── id │ │ │ └── messages.json │ │ ├── it │ │ │ └── messages.json │ │ ├── ja │ │ │ └── messages.json │ │ ├── ko │ │ │ └── messages.json │ │ ├── lt │ │ │ └── messages.json │ │ ├── lv │ │ │ └── messages.json │ │ ├── nl │ │ │ └── messages.json │ │ ├── pl │ │ │ └── messages.json │ │ ├── pt-br │ │ │ └── messages.json │ │ ├── pt-pt │ │ │ └── messages.json │ │ ├── ro │ │ │ └── messages.json │ │ ├── ru │ │ │ └── messages.json │ │ ├── sk │ │ │ └── messages.json │ │ ├── sl │ │ │ └── messages.json │ │ ├── sv │ │ │ └── messages.json │ │ ├── tr │ │ │ └── messages.json │ │ ├── uk │ │ │ └── messages.json │ │ └── zh-hans │ │ │ └── messages.json │ ├── metadata.json │ └── rule-set.json │ ├── 1_google-meet-open-in-chrome │ ├── cover.webp │ ├── i18n │ │ ├── bg │ │ │ └── messages.json │ │ ├── cs │ │ │ └── messages.json │ │ ├── da │ │ │ └── messages.json │ │ ├── de │ │ │ └── messages.json │ │ ├── el │ │ │ └── messages.json │ │ ├── es │ │ │ └── messages.json │ │ ├── et │ │ │ └── messages.json │ │ ├── fi │ │ │ └── messages.json │ │ ├── fr │ │ │ └── messages.json │ │ ├── hu │ │ │ └── messages.json │ │ ├── id │ │ │ └── messages.json │ │ ├── it │ │ │ └── messages.json │ │ ├── ja │ │ │ └── messages.json │ │ ├── ko │ │ │ └── messages.json │ │ ├── lt │ │ │ └── messages.json │ │ ├── lv │ │ │ └── messages.json │ │ ├── nl │ │ │ └── messages.json │ │ ├── pl │ │ │ └── messages.json │ │ ├── pt-br │ │ │ └── messages.json │ │ ├── pt-pt │ │ │ └── messages.json │ │ ├── ro │ │ │ └── messages.json │ │ ├── ru │ │ │ └── messages.json │ │ ├── sk │ │ │ └── messages.json │ │ ├── sl │ │ │ └── messages.json │ │ ├── sv │ │ │ └── messages.json │ │ ├── tr │ │ │ └── messages.json │ │ ├── uk │ │ │ └── messages.json │ │ └── zh-hans │ │ │ └── messages.json │ ├── metadata.json │ └── rule-set.json │ ├── 20_fix_open_puppies │ ├── cover.webp │ ├── i18n │ │ ├── bg │ │ │ └── messages.json │ │ ├── cs │ │ │ └── messages.json │ │ ├── da │ │ │ └── messages.json │ │ ├── de │ │ │ └── messages.json │ │ ├── el │ │ │ └── messages.json │ │ ├── es │ │ │ └── messages.json │ │ ├── et │ │ │ └── messages.json │ │ ├── fi │ │ │ └── messages.json │ │ ├── fr │ │ │ └── messages.json │ │ ├── hu │ │ │ └── messages.json │ │ ├── id │ │ │ └── messages.json │ │ ├── it │ │ │ └── messages.json │ │ ├── ja │ │ │ └── messages.json │ │ ├── ko │ │ │ └── messages.json │ │ ├── lt │ │ │ └── messages.json │ │ ├── lv │ │ │ └── messages.json │ │ ├── nl │ │ │ └── messages.json │ │ ├── pl │ │ │ └── messages.json │ │ ├── pt-br │ │ │ └── messages.json │ │ ├── pt-pt │ │ │ └── messages.json │ │ ├── ro │ │ │ └── messages.json │ │ ├── ru │ │ │ └── messages.json │ │ ├── sk │ │ │ └── messages.json │ │ ├── sl │ │ │ └── messages.json │ │ ├── sv │ │ │ └── messages.json │ │ ├── tr │ │ │ └── messages.json │ │ ├── uk │ │ │ └── messages.json │ │ └── zh-hans │ │ │ └── messages.json │ ├── metadata.json │ └── rule-set.json │ ├── 21_youtube_open_in_yattee_app │ ├── cover.webp │ ├── i18n │ │ ├── bg │ │ │ └── messages.json │ │ ├── cs │ │ │ └── messages.json │ │ ├── da │ │ │ └── messages.json │ │ ├── de │ │ │ └── messages.json │ │ ├── el │ │ │ └── messages.json │ │ ├── es │ │ │ └── messages.json │ │ ├── et │ │ │ └── messages.json │ │ ├── fi │ │ │ └── messages.json │ │ ├── fr │ │ │ └── messages.json │ │ ├── hu │ │ │ └── messages.json │ │ ├── id │ │ │ └── messages.json │ │ ├── it │ │ │ └── messages.json │ │ ├── ja │ │ │ └── messages.json │ │ ├── ko │ │ │ └── messages.json │ │ ├── lt │ │ │ └── messages.json │ │ ├── lv │ │ │ └── messages.json │ │ ├── nl │ │ │ └── messages.json │ │ ├── pl │ │ │ └── messages.json │ │ ├── pt-br │ │ │ └── messages.json │ │ ├── pt-pt │ │ │ └── messages.json │ │ ├── ro │ │ │ └── messages.json │ │ ├── ru │ │ │ └── messages.json │ │ ├── sk │ │ │ └── messages.json │ │ ├── sl │ │ │ └── messages.json │ │ ├── sv │ │ │ └── messages.json │ │ ├── tr │ │ │ └── messages.json │ │ ├── uk │ │ │ └── messages.json │ │ └── zh-hans │ │ │ └── messages.json │ ├── metadata.json │ └── rule-set.json │ ├── 22_amazon_strip_affiliate_tracking_parameters │ ├── cover.webp │ ├── i18n │ │ ├── bg │ │ │ └── messages.json │ │ ├── cs │ │ │ └── messages.json │ │ ├── da │ │ │ └── messages.json │ │ ├── de │ │ │ └── messages.json │ │ ├── el │ │ │ └── messages.json │ │ ├── es │ │ │ └── messages.json │ │ ├── et │ │ │ └── messages.json │ │ ├── fi │ │ │ └── messages.json │ │ ├── fr │ │ │ └── messages.json │ │ ├── hu │ │ │ └── messages.json │ │ ├── id │ │ │ └── messages.json │ │ ├── it │ │ │ └── messages.json │ │ ├── ja │ │ │ └── messages.json │ │ ├── ko │ │ │ └── messages.json │ │ ├── lt │ │ │ └── messages.json │ │ ├── lv │ │ │ └── messages.json │ │ ├── nl │ │ │ └── messages.json │ │ ├── pl │ │ │ └── messages.json │ │ ├── pt-br │ │ │ └── messages.json │ │ ├── pt-pt │ │ │ └── messages.json │ │ ├── ro │ │ │ └── messages.json │ │ ├── ru │ │ │ └── messages.json │ │ ├── sk │ │ │ └── messages.json │ │ ├── sl │ │ │ └── messages.json │ │ ├── sv │ │ │ └── messages.json │ │ ├── tr │ │ │ └── messages.json │ │ ├── uk │ │ │ └── messages.json │ │ └── zh-hans │ │ │ └── messages.json │ ├── metadata.json │ └── rule-set.json │ ├── 23_twitter_to_nitter │ ├── cover.webp │ ├── i18n │ │ ├── bg │ │ │ └── messages.json │ │ ├── cs │ │ │ └── messages.json │ │ ├── da │ │ │ └── messages.json │ │ ├── de │ │ │ └── messages.json │ │ ├── el │ │ │ └── messages.json │ │ ├── es │ │ │ └── messages.json │ │ ├── et │ │ │ └── messages.json │ │ ├── fi │ │ │ └── messages.json │ │ ├── fr │ │ │ └── messages.json │ │ ├── hu │ │ │ └── messages.json │ │ ├── id │ │ │ └── messages.json │ │ ├── it │ │ │ └── messages.json │ │ ├── ja │ │ │ └── messages.json │ │ ├── ko │ │ │ └── messages.json │ │ ├── lt │ │ │ └── messages.json │ │ ├── lv │ │ │ └── messages.json │ │ ├── nl │ │ │ └── messages.json │ │ ├── pl │ │ │ └── messages.json │ │ ├── pt-br │ │ │ └── messages.json │ │ ├── pt-pt │ │ │ └── messages.json │ │ ├── ro │ │ │ └── messages.json │ │ ├── ru │ │ │ └── messages.json │ │ ├── sk │ │ │ └── messages.json │ │ ├── sl │ │ │ └── messages.json │ │ ├── sv │ │ │ └── messages.json │ │ ├── tr │ │ │ └── messages.json │ │ ├── uk │ │ │ └── messages.json │ │ └── zh-hans │ │ │ └── messages.json │ ├── metadata.json │ └── rule-set.json │ ├── 24_google_search_to_chatgpt │ ├── cover.webp │ ├── i18n │ │ ├── bg │ │ │ └── messages.json │ │ ├── cs │ │ │ └── messages.json │ │ ├── da │ │ │ └── messages.json │ │ ├── de │ │ │ └── messages.json │ │ ├── el │ │ │ └── messages.json │ │ ├── es │ │ │ └── messages.json │ │ ├── et │ │ │ └── messages.json │ │ ├── fi │ │ │ └── messages.json │ │ ├── fr │ │ │ └── messages.json │ │ ├── hu │ │ │ └── messages.json │ │ ├── id │ │ │ └── messages.json │ │ ├── it │ │ │ └── messages.json │ │ ├── ja │ │ │ └── messages.json │ │ ├── ko │ │ │ └── messages.json │ │ ├── lt │ │ │ └── messages.json │ │ ├── lv │ │ │ └── messages.json │ │ ├── nl │ │ │ └── messages.json │ │ ├── pl │ │ │ └── messages.json │ │ ├── pt-br │ │ │ └── messages.json │ │ ├── pt-pt │ │ │ └── messages.json │ │ ├── ro │ │ │ └── messages.json │ │ ├── ru │ │ │ └── messages.json │ │ ├── sk │ │ │ └── messages.json │ │ ├── sl │ │ │ └── messages.json │ │ ├── sv │ │ │ └── messages.json │ │ ├── tr │ │ │ └── messages.json │ │ ├── uk │ │ │ └── messages.json │ │ └── zh-hans │ │ │ └── messages.json │ ├── metadata.json │ └── rule-set.json │ ├── 25_ddg_to_startpage_wile_keeping_bangs_working │ ├── cover.webp │ ├── i18n │ │ ├── bg │ │ │ └── messages.json │ │ ├── cs │ │ │ └── messages.json │ │ ├── da │ │ │ └── messages.json │ │ ├── de │ │ │ └── messages.json │ │ ├── el │ │ │ └── messages.json │ │ ├── es │ │ │ └── messages.json │ │ ├── et │ │ │ └── messages.json │ │ ├── fi │ │ │ └── messages.json │ │ ├── fr │ │ │ └── messages.json │ │ ├── hu │ │ │ └── messages.json │ │ ├── id │ │ │ └── messages.json │ │ ├── it │ │ │ └── messages.json │ │ ├── ja │ │ │ └── messages.json │ │ ├── ko │ │ │ └── messages.json │ │ ├── lt │ │ │ └── messages.json │ │ ├── lv │ │ │ └── messages.json │ │ ├── nl │ │ │ └── messages.json │ │ ├── pl │ │ │ └── messages.json │ │ ├── pt-br │ │ │ └── messages.json │ │ ├── pt-pt │ │ │ └── messages.json │ │ ├── ro │ │ │ └── messages.json │ │ ├── ru │ │ │ └── messages.json │ │ ├── sk │ │ │ └── messages.json │ │ ├── sl │ │ │ └── messages.json │ │ ├── sv │ │ │ └── messages.json │ │ ├── tr │ │ │ └── messages.json │ │ ├── uk │ │ │ └── messages.json │ │ └── zh-hans │ │ │ └── messages.json │ ├── metadata.json │ └── rule-set.json │ ├── 26_google_search_to_chatgpt_by_default │ ├── cover.webp │ ├── i18n │ │ ├── bg │ │ │ └── messages.json │ │ ├── cs │ │ │ └── messages.json │ │ ├── da │ │ │ └── messages.json │ │ ├── de │ │ │ └── messages.json │ │ ├── el │ │ │ └── messages.json │ │ ├── es │ │ │ └── messages.json │ │ ├── et │ │ │ └── messages.json │ │ ├── fi │ │ │ └── messages.json │ │ ├── fr │ │ │ └── messages.json │ │ ├── hu │ │ │ └── messages.json │ │ ├── id │ │ │ └── messages.json │ │ ├── it │ │ │ └── messages.json │ │ ├── ja │ │ │ └── messages.json │ │ ├── ko │ │ │ └── messages.json │ │ ├── lt │ │ │ └── messages.json │ │ ├── lv │ │ │ └── messages.json │ │ ├── nl │ │ │ └── messages.json │ │ ├── pl │ │ │ └── messages.json │ │ ├── pt-br │ │ │ └── messages.json │ │ ├── pt-pt │ │ │ └── messages.json │ │ ├── ro │ │ │ └── messages.json │ │ ├── ru │ │ │ └── messages.json │ │ ├── sk │ │ │ └── messages.json │ │ ├── sl │ │ │ └── messages.json │ │ ├── sv │ │ │ └── messages.json │ │ ├── tr │ │ │ └── messages.json │ │ ├── uk │ │ │ └── messages.json │ │ └── zh-hans │ │ │ └── messages.json │ ├── metadata.json │ └── rule-set.json │ ├── 27_google_search_to_perplexity │ ├── cover.webp │ ├── i18n │ │ ├── bg │ │ │ └── messages.json │ │ ├── cs │ │ │ └── messages.json │ │ ├── da │ │ │ └── messages.json │ │ ├── de │ │ │ └── messages.json │ │ ├── el │ │ │ └── messages.json │ │ ├── es │ │ │ └── messages.json │ │ ├── et │ │ │ └── messages.json │ │ ├── fi │ │ │ └── messages.json │ │ ├── fr │ │ │ └── messages.json │ │ ├── hu │ │ │ └── messages.json │ │ ├── id │ │ │ └── messages.json │ │ ├── it │ │ │ └── messages.json │ │ ├── ja │ │ │ └── messages.json │ │ ├── ko │ │ │ └── messages.json │ │ ├── lt │ │ │ └── messages.json │ │ ├── lv │ │ │ └── messages.json │ │ ├── nl │ │ │ └── messages.json │ │ ├── pl │ │ │ └── messages.json │ │ ├── pt-br │ │ │ └── messages.json │ │ ├── pt-pt │ │ │ └── messages.json │ │ ├── ro │ │ │ └── messages.json │ │ ├── ru │ │ │ └── messages.json │ │ ├── sk │ │ │ └── messages.json │ │ ├── sl │ │ │ └── messages.json │ │ ├── sv │ │ │ └── messages.json │ │ ├── tr │ │ │ └── messages.json │ │ ├── uk │ │ │ └── messages.json │ │ └── zh-hans │ │ │ └── messages.json │ ├── metadata.json │ └── rule-set.json │ ├── 28_instagram_for_you_to_following │ ├── cover.webp │ ├── i18n │ │ ├── bg │ │ │ └── messages.json │ │ ├── cs │ │ │ └── messages.json │ │ ├── da │ │ │ └── messages.json │ │ ├── de │ │ │ └── messages.json │ │ ├── el │ │ │ └── messages.json │ │ ├── es │ │ │ └── messages.json │ │ ├── et │ │ │ └── messages.json │ │ ├── fi │ │ │ └── messages.json │ │ ├── fr │ │ │ └── messages.json │ │ ├── hu │ │ │ └── messages.json │ │ ├── id │ │ │ └── messages.json │ │ ├── it │ │ │ └── messages.json │ │ ├── ja │ │ │ └── messages.json │ │ ├── ko │ │ │ └── messages.json │ │ ├── lt │ │ │ └── messages.json │ │ ├── lv │ │ │ └── messages.json │ │ ├── nl │ │ │ └── messages.json │ │ ├── pl │ │ │ └── messages.json │ │ ├── pt-br │ │ │ └── messages.json │ │ ├── pt-pt │ │ │ └── messages.json │ │ ├── ro │ │ │ └── messages.json │ │ ├── ru │ │ │ └── messages.json │ │ ├── sk │ │ │ └── messages.json │ │ ├── sl │ │ │ └── messages.json │ │ ├── sv │ │ │ └── messages.json │ │ ├── tr │ │ │ └── messages.json │ │ ├── uk │ │ │ └── messages.json │ │ └── zh-hans │ │ │ └── messages.json │ ├── metadata.json │ └── rule-set.json │ ├── 29_HIDDEN_tiktok_to_offtiktok │ ├── README.md │ ├── _cover.webp │ ├── _metadata.json │ └── _rule-set.json │ ├── 2_notion-open-in-notion-app │ ├── cover.webp │ ├── i18n │ │ ├── bg │ │ │ └── messages.json │ │ ├── cs │ │ │ └── messages.json │ │ ├── da │ │ │ └── messages.json │ │ ├── de │ │ │ └── messages.json │ │ ├── el │ │ │ └── messages.json │ │ ├── es │ │ │ └── messages.json │ │ ├── et │ │ │ └── messages.json │ │ ├── fi │ │ │ └── messages.json │ │ ├── fr │ │ │ └── messages.json │ │ ├── hu │ │ │ └── messages.json │ │ ├── id │ │ │ └── messages.json │ │ ├── it │ │ │ └── messages.json │ │ ├── ja │ │ │ └── messages.json │ │ ├── ko │ │ │ └── messages.json │ │ ├── lt │ │ │ └── messages.json │ │ ├── lv │ │ │ └── messages.json │ │ ├── nl │ │ │ └── messages.json │ │ ├── pl │ │ │ └── messages.json │ │ ├── pt-br │ │ │ └── messages.json │ │ ├── pt-pt │ │ │ └── messages.json │ │ ├── ro │ │ │ └── messages.json │ │ ├── ru │ │ │ └── messages.json │ │ ├── sk │ │ │ └── messages.json │ │ ├── sl │ │ │ └── messages.json │ │ ├── sv │ │ │ └── messages.json │ │ ├── tr │ │ │ └── messages.json │ │ ├── uk │ │ │ └── messages.json │ │ └── zh-hans │ │ │ └── messages.json │ ├── metadata.json │ └── rule-set.json │ ├── 30_instagram_to_imginn │ ├── cover.webp │ ├── i18n │ │ ├── bg │ │ │ └── messages.json │ │ ├── cs │ │ │ └── messages.json │ │ ├── da │ │ │ └── messages.json │ │ ├── de │ │ │ └── messages.json │ │ ├── el │ │ │ └── messages.json │ │ ├── es │ │ │ └── messages.json │ │ ├── et │ │ │ └── messages.json │ │ ├── fi │ │ │ └── messages.json │ │ ├── fr │ │ │ └── messages.json │ │ ├── hu │ │ │ └── messages.json │ │ ├── id │ │ │ └── messages.json │ │ ├── it │ │ │ └── messages.json │ │ ├── ja │ │ │ └── messages.json │ │ ├── ko │ │ │ └── messages.json │ │ ├── lt │ │ │ └── messages.json │ │ ├── lv │ │ │ └── messages.json │ │ ├── nl │ │ │ └── messages.json │ │ ├── pl │ │ │ └── messages.json │ │ ├── pt-br │ │ │ └── messages.json │ │ ├── pt-pt │ │ │ └── messages.json │ │ ├── ro │ │ │ └── messages.json │ │ ├── ru │ │ │ └── messages.json │ │ ├── sk │ │ │ └── messages.json │ │ ├── sl │ │ │ └── messages.json │ │ ├── sv │ │ │ └── messages.json │ │ ├── tr │ │ │ └── messages.json │ │ ├── uk │ │ │ └── messages.json │ │ └── zh-hans │ │ │ └── messages.json │ ├── metadata.json │ └── rule-set.json │ ├── 31_open_youtube_in_duckduckgo_ios │ ├── cover.webp │ ├── i18n │ │ ├── bg │ │ │ └── messages.json │ │ ├── cs │ │ │ └── messages.json │ │ ├── da │ │ │ └── messages.json │ │ ├── de │ │ │ └── messages.json │ │ ├── el │ │ │ └── messages.json │ │ ├── es │ │ │ └── messages.json │ │ ├── et │ │ │ └── messages.json │ │ ├── fi │ │ │ └── messages.json │ │ ├── fr │ │ │ └── messages.json │ │ ├── hu │ │ │ └── messages.json │ │ ├── id │ │ │ └── messages.json │ │ ├── it │ │ │ └── messages.json │ │ ├── ja │ │ │ └── messages.json │ │ ├── ko │ │ │ └── messages.json │ │ ├── lt │ │ │ └── messages.json │ │ ├── lv │ │ │ └── messages.json │ │ ├── nl │ │ │ └── messages.json │ │ ├── pl │ │ │ └── messages.json │ │ ├── pt-br │ │ │ └── messages.json │ │ ├── pt-pt │ │ │ └── messages.json │ │ ├── ro │ │ │ └── messages.json │ │ ├── ru │ │ │ └── messages.json │ │ ├── sk │ │ │ └── messages.json │ │ ├── sl │ │ │ └── messages.json │ │ ├── sv │ │ │ └── messages.json │ │ ├── tr │ │ │ └── messages.json │ │ ├── uk │ │ │ └── messages.json │ │ └── zh-hans │ │ │ └── messages.json │ ├── metadata.json │ └── rule-set.json │ ├── 32_open_youtube_in_duckduckgo_mac │ ├── cover.webp │ ├── i18n │ │ ├── bg │ │ │ └── messages.json │ │ ├── cs │ │ │ └── messages.json │ │ ├── da │ │ │ └── messages.json │ │ ├── de │ │ │ └── messages.json │ │ ├── el │ │ │ └── messages.json │ │ ├── es │ │ │ └── messages.json │ │ ├── et │ │ │ └── messages.json │ │ ├── fi │ │ │ └── messages.json │ │ ├── fr │ │ │ └── messages.json │ │ ├── hu │ │ │ └── messages.json │ │ ├── id │ │ │ └── messages.json │ │ ├── it │ │ │ └── messages.json │ │ ├── ja │ │ │ └── messages.json │ │ ├── ko │ │ │ └── messages.json │ │ ├── lt │ │ │ └── messages.json │ │ ├── lv │ │ │ └── messages.json │ │ ├── nl │ │ │ └── messages.json │ │ ├── pl │ │ │ └── messages.json │ │ ├── pt-br │ │ │ └── messages.json │ │ ├── pt-pt │ │ │ └── messages.json │ │ ├── ro │ │ │ └── messages.json │ │ ├── ru │ │ │ └── messages.json │ │ ├── sk │ │ │ └── messages.json │ │ ├── sl │ │ │ └── messages.json │ │ ├── sv │ │ │ └── messages.json │ │ ├── tr │ │ │ └── messages.json │ │ ├── uk │ │ │ └── messages.json │ │ └── zh-hans │ │ │ └── messages.json │ ├── metadata.json │ └── rule-set.json │ ├── 33_xkcd_to_explain_xkcd │ ├── cover.webp │ ├── i18n │ │ ├── bg │ │ │ └── messages.json │ │ ├── cs │ │ │ └── messages.json │ │ ├── da │ │ │ └── messages.json │ │ ├── de │ │ │ └── messages.json │ │ ├── el │ │ │ └── messages.json │ │ ├── es │ │ │ └── messages.json │ │ ├── et │ │ │ └── messages.json │ │ ├── fi │ │ │ └── messages.json │ │ ├── fr │ │ │ └── messages.json │ │ ├── hu │ │ │ └── messages.json │ │ ├── id │ │ │ └── messages.json │ │ ├── it │ │ │ └── messages.json │ │ ├── ja │ │ │ └── messages.json │ │ ├── ko │ │ │ └── messages.json │ │ ├── lt │ │ │ └── messages.json │ │ ├── lv │ │ │ └── messages.json │ │ ├── nl │ │ │ └── messages.json │ │ ├── pl │ │ │ └── messages.json │ │ ├── pt-br │ │ │ └── messages.json │ │ ├── pt-pt │ │ │ └── messages.json │ │ ├── ro │ │ │ └── messages.json │ │ ├── ru │ │ │ └── messages.json │ │ ├── sk │ │ │ └── messages.json │ │ ├── sl │ │ │ └── messages.json │ │ ├── sv │ │ │ └── messages.json │ │ ├── tr │ │ │ └── messages.json │ │ ├── uk │ │ │ └── messages.json │ │ └── zh-hans │ │ │ └── messages.json │ ├── metadata.json │ └── rule-set.json │ ├── 34_google_maps_to_apple_maps_deeplink │ ├── cover.webp │ ├── i18n │ │ ├── bg │ │ │ └── messages.json │ │ ├── cs │ │ │ └── messages.json │ │ ├── da │ │ │ └── messages.json │ │ ├── de │ │ │ └── messages.json │ │ ├── el │ │ │ └── messages.json │ │ ├── es │ │ │ └── messages.json │ │ ├── et │ │ │ └── messages.json │ │ ├── fi │ │ │ └── messages.json │ │ ├── fr │ │ │ └── messages.json │ │ ├── hu │ │ │ └── messages.json │ │ ├── id │ │ │ └── messages.json │ │ ├── it │ │ │ └── messages.json │ │ ├── ja │ │ │ └── messages.json │ │ ├── ko │ │ │ └── messages.json │ │ ├── lt │ │ │ └── messages.json │ │ ├── lv │ │ │ └── messages.json │ │ ├── nl │ │ │ └── messages.json │ │ ├── pl │ │ │ └── messages.json │ │ ├── pt-br │ │ │ └── messages.json │ │ ├── pt-pt │ │ │ └── messages.json │ │ ├── ro │ │ │ └── messages.json │ │ ├── ru │ │ │ └── messages.json │ │ ├── sk │ │ │ └── messages.json │ │ ├── sl │ │ │ └── messages.json │ │ ├── sv │ │ │ └── messages.json │ │ ├── tr │ │ │ └── messages.json │ │ ├── uk │ │ │ └── messages.json │ │ └── zh-hans │ │ │ └── messages.json │ ├── metadata.json │ └── rule-set.json │ ├── 35_google_maps_to_apple_maps_open │ ├── cover.webp │ ├── i18n │ │ ├── bg │ │ │ └── messages.json │ │ ├── cs │ │ │ └── messages.json │ │ ├── da │ │ │ └── messages.json │ │ ├── de │ │ │ └── messages.json │ │ ├── el │ │ │ └── messages.json │ │ ├── es │ │ │ └── messages.json │ │ ├── et │ │ │ └── messages.json │ │ ├── fi │ │ │ └── messages.json │ │ ├── fr │ │ │ └── messages.json │ │ ├── hu │ │ │ └── messages.json │ │ ├── id │ │ │ └── messages.json │ │ ├── it │ │ │ └── messages.json │ │ ├── ja │ │ │ └── messages.json │ │ ├── ko │ │ │ └── messages.json │ │ ├── lt │ │ │ └── messages.json │ │ ├── lv │ │ │ └── messages.json │ │ ├── nl │ │ │ └── messages.json │ │ ├── pl │ │ │ └── messages.json │ │ ├── pt-br │ │ │ └── messages.json │ │ ├── pt-pt │ │ │ └── messages.json │ │ ├── ro │ │ │ └── messages.json │ │ ├── ru │ │ │ └── messages.json │ │ ├── sk │ │ │ └── messages.json │ │ ├── sl │ │ │ └── messages.json │ │ ├── sv │ │ │ └── messages.json │ │ ├── tr │ │ │ └── messages.json │ │ ├── uk │ │ │ └── messages.json │ │ └── zh-hans │ │ │ └── messages.json │ ├── metadata.json │ └── rule-set.json │ ├── 36_miro-open-in-miro-app │ ├── cover.webp │ ├── i18n │ │ ├── bg │ │ │ └── messages.json │ │ ├── cs │ │ │ └── messages.json │ │ ├── da │ │ │ └── messages.json │ │ ├── de │ │ │ └── messages.json │ │ ├── el │ │ │ └── messages.json │ │ ├── es │ │ │ └── messages.json │ │ ├── et │ │ │ └── messages.json │ │ ├── fi │ │ │ └── messages.json │ │ ├── fr │ │ │ └── messages.json │ │ ├── hu │ │ │ └── messages.json │ │ ├── id │ │ │ └── messages.json │ │ ├── it │ │ │ └── messages.json │ │ ├── ja │ │ │ └── messages.json │ │ ├── ko │ │ │ └── messages.json │ │ ├── lt │ │ │ └── messages.json │ │ ├── lv │ │ │ └── messages.json │ │ ├── nl │ │ │ └── messages.json │ │ ├── pl │ │ │ └── messages.json │ │ ├── pt-br │ │ │ └── messages.json │ │ ├── pt-pt │ │ │ └── messages.json │ │ ├── ro │ │ │ └── messages.json │ │ ├── ru │ │ │ └── messages.json │ │ ├── sk │ │ │ └── messages.json │ │ ├── sl │ │ │ └── messages.json │ │ ├── sv │ │ │ └── messages.json │ │ ├── tr │ │ │ └── messages.json │ │ ├── uk │ │ │ └── messages.json │ │ └── zh-hans │ │ │ └── messages.json │ ├── metadata.json │ └── rule-set.json │ ├── 37_hacker-news-open-in-octal │ ├── cover.jpg │ ├── i18n │ │ ├── bg │ │ │ └── messages.json │ │ ├── cs │ │ │ └── messages.json │ │ ├── da │ │ │ └── messages.json │ │ ├── de │ │ │ └── messages.json │ │ ├── el │ │ │ └── messages.json │ │ ├── es │ │ │ └── messages.json │ │ ├── et │ │ │ └── messages.json │ │ ├── fi │ │ │ └── messages.json │ │ ├── fr │ │ │ └── messages.json │ │ ├── hu │ │ │ └── messages.json │ │ ├── id │ │ │ └── messages.json │ │ ├── it │ │ │ └── messages.json │ │ ├── ja │ │ │ └── messages.json │ │ ├── ko │ │ │ └── messages.json │ │ ├── lt │ │ │ └── messages.json │ │ ├── lv │ │ │ └── messages.json │ │ ├── nl │ │ │ └── messages.json │ │ ├── pl │ │ │ └── messages.json │ │ ├── pt-br │ │ │ └── messages.json │ │ ├── pt-pt │ │ │ └── messages.json │ │ ├── ro │ │ │ └── messages.json │ │ ├── ru │ │ │ └── messages.json │ │ ├── sk │ │ │ └── messages.json │ │ ├── sl │ │ │ └── messages.json │ │ ├── sv │ │ │ └── messages.json │ │ ├── tr │ │ │ └── messages.json │ │ ├── uk │ │ │ └── messages.json │ │ └── zh-hans │ │ │ └── messages.json │ ├── metadata.json │ └── rule-set.json │ ├── 38_youtube-open-in-unwatched │ ├── cover.jpg │ ├── i18n │ │ ├── bg │ │ │ └── messages.json │ │ ├── cs │ │ │ └── messages.json │ │ ├── da │ │ │ └── messages.json │ │ ├── de │ │ │ └── messages.json │ │ ├── el │ │ │ └── messages.json │ │ ├── es │ │ │ └── messages.json │ │ ├── et │ │ │ └── messages.json │ │ ├── fi │ │ │ └── messages.json │ │ ├── fr │ │ │ └── messages.json │ │ ├── hu │ │ │ └── messages.json │ │ ├── id │ │ │ └── messages.json │ │ ├── it │ │ │ └── messages.json │ │ ├── ja │ │ │ └── messages.json │ │ ├── ko │ │ │ └── messages.json │ │ ├── lt │ │ │ └── messages.json │ │ ├── lv │ │ │ └── messages.json │ │ ├── nl │ │ │ └── messages.json │ │ ├── pl │ │ │ └── messages.json │ │ ├── pt-br │ │ │ └── messages.json │ │ ├── pt-pt │ │ │ └── messages.json │ │ ├── ro │ │ │ └── messages.json │ │ ├── ru │ │ │ └── messages.json │ │ ├── sk │ │ │ └── messages.json │ │ ├── sl │ │ │ └── messages.json │ │ ├── sv │ │ │ └── messages.json │ │ ├── tr │ │ │ └── messages.json │ │ ├── uk │ │ │ └── messages.json │ │ └── zh-hans │ │ │ └── messages.json │ ├── metadata.json │ └── rule-set.json │ ├── 39_grokipedia-to-wikipedia │ ├── cover.jpg │ ├── i18n │ │ ├── bg │ │ │ └── messages.json │ │ ├── cs │ │ │ └── messages.json │ │ ├── da │ │ │ └── messages.json │ │ ├── de │ │ │ └── messages.json │ │ ├── el │ │ │ └── messages.json │ │ ├── es │ │ │ └── messages.json │ │ ├── et │ │ │ └── messages.json │ │ ├── fi │ │ │ └── messages.json │ │ ├── fr │ │ │ └── messages.json │ │ ├── hu │ │ │ └── messages.json │ │ ├── id │ │ │ └── messages.json │ │ ├── it │ │ │ └── messages.json │ │ ├── ja │ │ │ └── messages.json │ │ ├── ko │ │ │ └── messages.json │ │ ├── lt │ │ │ └── messages.json │ │ ├── lv │ │ │ └── messages.json │ │ ├── nl │ │ │ └── messages.json │ │ ├── pl │ │ │ └── messages.json │ │ ├── pt-br │ │ │ └── messages.json │ │ ├── pt-pt │ │ │ └── messages.json │ │ ├── ro │ │ │ └── messages.json │ │ ├── ru │ │ │ └── messages.json │ │ ├── sk │ │ │ └── messages.json │ │ ├── sl │ │ │ └── messages.json │ │ ├── sv │ │ │ └── messages.json │ │ ├── tr │ │ │ └── messages.json │ │ ├── uk │ │ │ └── messages.json │ │ └── zh-hans │ │ │ └── messages.json │ ├── metadata.json │ └── rule-set.json │ ├── 3_wikipedia-open-in-wikiwand │ ├── cover.webp │ ├── i18n │ │ ├── bg │ │ │ └── messages.json │ │ ├── cs │ │ │ └── messages.json │ │ ├── da │ │ │ └── messages.json │ │ ├── de │ │ │ └── messages.json │ │ ├── el │ │ │ └── messages.json │ │ ├── es │ │ │ └── messages.json │ │ ├── et │ │ │ └── messages.json │ │ ├── fi │ │ │ └── messages.json │ │ ├── fr │ │ │ └── messages.json │ │ ├── hu │ │ │ └── messages.json │ │ ├── id │ │ │ └── messages.json │ │ ├── it │ │ │ └── messages.json │ │ ├── ja │ │ │ └── messages.json │ │ ├── ko │ │ │ └── messages.json │ │ ├── lt │ │ │ └── messages.json │ │ ├── lv │ │ │ └── messages.json │ │ ├── nl │ │ │ └── messages.json │ │ ├── pl │ │ │ └── messages.json │ │ ├── pt-br │ │ │ └── messages.json │ │ ├── pt-pt │ │ │ └── messages.json │ │ ├── ro │ │ │ └── messages.json │ │ ├── ru │ │ │ └── messages.json │ │ ├── sk │ │ │ └── messages.json │ │ ├── sl │ │ │ └── messages.json │ │ ├── sv │ │ │ └── messages.json │ │ ├── tr │ │ │ └── messages.json │ │ ├── uk │ │ │ └── messages.json │ │ └── zh-hans │ │ │ └── messages.json │ ├── metadata.json │ └── rule-set.json │ ├── 4_github-hide-whitespace-changes-in-pull-request │ ├── cover.webp │ ├── i18n │ │ ├── bg │ │ │ └── messages.json │ │ ├── cs │ │ │ └── messages.json │ │ ├── da │ │ │ └── messages.json │ │ ├── de │ │ │ └── messages.json │ │ ├── el │ │ │ └── messages.json │ │ ├── es │ │ │ └── messages.json │ │ ├── et │ │ │ └── messages.json │ │ ├── fi │ │ │ └── messages.json │ │ ├── fr │ │ │ └── messages.json │ │ ├── hu │ │ │ └── messages.json │ │ ├── id │ │ │ └── messages.json │ │ ├── it │ │ │ └── messages.json │ │ ├── ja │ │ │ └── messages.json │ │ ├── ko │ │ │ └── messages.json │ │ ├── lt │ │ │ └── messages.json │ │ ├── lv │ │ │ └── messages.json │ │ ├── nl │ │ │ └── messages.json │ │ ├── pl │ │ │ └── messages.json │ │ ├── pt-br │ │ │ └── messages.json │ │ ├── pt-pt │ │ │ └── messages.json │ │ ├── ro │ │ │ └── messages.json │ │ ├── ru │ │ │ └── messages.json │ │ ├── sk │ │ │ └── messages.json │ │ ├── sl │ │ │ └── messages.json │ │ ├── sv │ │ │ └── messages.json │ │ ├── tr │ │ │ └── messages.json │ │ ├── uk │ │ │ └── messages.json │ │ └── zh-hans │ │ │ └── messages.json │ ├── metadata.json │ └── rule-set.json │ ├── 5_figma-open-in-figma-app │ ├── cover.webp │ ├── i18n │ │ ├── bg │ │ │ └── messages.json │ │ ├── cs │ │ │ └── messages.json │ │ ├── da │ │ │ └── messages.json │ │ ├── de │ │ │ └── messages.json │ │ ├── el │ │ │ └── messages.json │ │ ├── es │ │ │ └── messages.json │ │ ├── et │ │ │ └── messages.json │ │ ├── fi │ │ │ └── messages.json │ │ ├── fr │ │ │ └── messages.json │ │ ├── hu │ │ │ └── messages.json │ │ ├── id │ │ │ └── messages.json │ │ ├── it │ │ │ └── messages.json │ │ ├── ja │ │ │ └── messages.json │ │ ├── ko │ │ │ └── messages.json │ │ ├── lt │ │ │ └── messages.json │ │ ├── lv │ │ │ └── messages.json │ │ ├── nl │ │ │ └── messages.json │ │ ├── pl │ │ │ └── messages.json │ │ ├── pt-br │ │ │ └── messages.json │ │ ├── pt-pt │ │ │ └── messages.json │ │ ├── ro │ │ │ └── messages.json │ │ ├── ru │ │ │ └── messages.json │ │ ├── sk │ │ │ └── messages.json │ │ ├── sl │ │ │ └── messages.json │ │ ├── sv │ │ │ └── messages.json │ │ ├── tr │ │ │ └── messages.json │ │ ├── uk │ │ │ └── messages.json │ │ └── zh-hans │ │ │ └── messages.json │ ├── metadata.json │ └── rule-set.json │ ├── 6_google-search-to-youtube │ ├── cover.webp │ ├── i18n │ │ ├── bg │ │ │ └── messages.json │ │ ├── cs │ │ │ └── messages.json │ │ ├── da │ │ │ └── messages.json │ │ ├── de │ │ │ └── messages.json │ │ ├── el │ │ │ └── messages.json │ │ ├── es │ │ │ └── messages.json │ │ ├── et │ │ │ └── messages.json │ │ ├── fi │ │ │ └── messages.json │ │ ├── fr │ │ │ └── messages.json │ │ ├── hu │ │ │ └── messages.json │ │ ├── id │ │ │ └── messages.json │ │ ├── it │ │ │ └── messages.json │ │ ├── ja │ │ │ └── messages.json │ │ ├── ko │ │ │ └── messages.json │ │ ├── lt │ │ │ └── messages.json │ │ ├── lv │ │ │ └── messages.json │ │ ├── nl │ │ │ └── messages.json │ │ ├── pl │ │ │ └── messages.json │ │ ├── pt-br │ │ │ └── messages.json │ │ ├── pt-pt │ │ │ └── messages.json │ │ ├── ro │ │ │ └── messages.json │ │ ├── ru │ │ │ └── messages.json │ │ ├── sk │ │ │ └── messages.json │ │ ├── sl │ │ │ └── messages.json │ │ ├── sv │ │ │ └── messages.json │ │ ├── tr │ │ │ └── messages.json │ │ ├── uk │ │ │ └── messages.json │ │ └── zh-hans │ │ │ └── messages.json │ ├── metadata.json │ └── rule-set.json │ ├── 7_minecraft-fandom-wiki-to-mincraft-wiki │ ├── cover.webp │ ├── i18n │ │ ├── bg │ │ │ └── messages.json │ │ ├── cs │ │ │ └── messages.json │ │ ├── da │ │ │ └── messages.json │ │ ├── de │ │ │ └── messages.json │ │ ├── el │ │ │ └── messages.json │ │ ├── es │ │ │ └── messages.json │ │ ├── et │ │ │ └── messages.json │ │ ├── fi │ │ │ └── messages.json │ │ ├── fr │ │ │ └── messages.json │ │ ├── hu │ │ │ └── messages.json │ │ ├── id │ │ │ └── messages.json │ │ ├── it │ │ │ └── messages.json │ │ ├── ja │ │ │ └── messages.json │ │ ├── ko │ │ │ └── messages.json │ │ ├── lt │ │ │ └── messages.json │ │ ├── lv │ │ │ └── messages.json │ │ ├── nl │ │ │ └── messages.json │ │ ├── pl │ │ │ └── messages.json │ │ ├── pt-br │ │ │ └── messages.json │ │ ├── pt-pt │ │ │ └── messages.json │ │ ├── ro │ │ │ └── messages.json │ │ ├── ru │ │ │ └── messages.json │ │ ├── sk │ │ │ └── messages.json │ │ ├── sl │ │ │ └── messages.json │ │ ├── sv │ │ │ └── messages.json │ │ ├── tr │ │ │ └── messages.json │ │ ├── uk │ │ │ └── messages.json │ │ └── zh-hans │ │ │ └── messages.json │ ├── metadata.json │ └── rule-set.json │ ├── 8_DELETED │ └── .gitkeep │ └── 9_terraria-fandom-wiki-to-wiki-gg │ ├── i18n │ ├── bg │ │ └── messages.json │ ├── cs │ │ └── messages.json │ ├── da │ │ └── messages.json │ ├── de │ │ └── messages.json │ ├── el │ │ └── messages.json │ ├── es │ │ └── messages.json │ ├── et │ │ └── messages.json │ ├── fi │ │ └── messages.json │ ├── fr │ │ └── messages.json │ ├── hu │ │ └── messages.json │ ├── id │ │ └── messages.json │ ├── it │ │ └── messages.json │ ├── ja │ │ └── messages.json │ ├── ko │ │ └── messages.json │ ├── lt │ │ └── messages.json │ ├── lv │ │ └── messages.json │ ├── nl │ │ └── messages.json │ ├── pl │ │ └── messages.json │ ├── pt-br │ │ └── messages.json │ ├── pt-pt │ │ └── messages.json │ ├── ro │ │ └── messages.json │ ├── ru │ │ └── messages.json │ ├── sk │ │ └── messages.json │ ├── sl │ │ └── messages.json │ ├── sv │ │ └── messages.json │ ├── tr │ │ └── messages.json │ ├── uk │ │ └── messages.json │ └── zh-hans │ │ └── messages.json │ ├── metadata.json │ ├── rule-set.json │ └── screenshot.jpg ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── prompts ├── translate-docs.md ├── translate-i18n-json-files.md └── translate-library-i18n-messages-json.md ├── release-notes ├── 7.0.0.mdx ├── 7.11.0.mdx ├── 7.12.0.mdx ├── 7.14.0.mdx ├── 7.15.0.mdx ├── 7.16.0.mdx ├── 7.17.0.mdx ├── 7.17.1.mdx ├── 7.18.0.mdx ├── 7.18.1.mdx ├── 8.0.0.mdx ├── 8.1.0.mdx ├── 8.1.1.mdx ├── 8.2.0.mdx ├── 8.2.1.mdx ├── 8.3.0.mdx ├── 8.3.1.mdx ├── 8.3.2.mdx ├── 8.3.3.mdx ├── 8.4.0.mdx ├── 8.4.1.mdx ├── 8.5.0.mdx ├── 8.5.1.mdx ├── 8.6.0.mdx └── 8.7.0.mdx ├── scripts ├── agent-translate-docs.sh ├── agent-translate-json-files.sh ├── agent-translate-library-i18n-messages-json.sh ├── check-generated-json-translations.sh ├── docusaurus-write-translations.sh └── extract-library-translatables.sh ├── sidebars.ts ├── src ├── components │ ├── Award │ │ ├── award-ivy-leaf-leading.png │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── DeviceAwareTabs │ │ └── index.tsx │ ├── ExtensionStoreLinks │ │ ├── constants.ts │ │ └── index.tsx │ ├── HomepageFeatures │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── IfBrowserStore │ │ └── index.tsx │ ├── Image │ │ └── index.tsx │ ├── LandingPageBackground │ │ ├── fragment-shader.glsl │ │ ├── index.tsx │ │ ├── styles.module.scss │ │ └── vertex-shader.glsl │ ├── LandingPageFAQ │ │ ├── index.tsx │ │ └── styles.module.scss │ └── ReleaseNotesList │ │ ├── Header │ │ ├── index.tsx │ │ └── styles.module.scss │ │ └── index.tsx ├── constants.ts ├── css │ └── custom.scss ├── pages │ ├── index.module.scss │ └── index.tsx ├── theme │ └── NavbarItem │ │ ├── DropdownNavbarItem │ │ ├── Desktop │ │ │ └── index.tsx │ │ ├── Mobile │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ │ └── index.tsx │ │ └── LocaleDropdownNavbarItem │ │ ├── index.tsx │ │ └── styles.module.css └── types │ ├── glsl.d.ts │ └── styles.d.ts ├── static ├── .nojekyll ├── google7df7843a25365152.html ├── img │ ├── apple-logo.svg │ ├── appstore-badge.svg │ ├── chrome-store-badge.svg │ ├── context-menu-redirector.png │ ├── edit-rule-dnr.png │ ├── error-overlay.png │ ├── extension-popup.png │ ├── files-share-ios.png │ ├── firefox-store-badge.svg │ ├── landing-feature-library.png │ ├── landing-feature-multi-platform.png │ ├── landing-feature-native-ui.png │ ├── landing-feature-redirection-engine.png │ ├── library-get-button-ios.gif │ ├── library-screenshot.webp │ ├── logo.png │ ├── macPrepareExtensionPermissionAlertChrome@3x.png │ ├── menubar-file-redirector.png │ ├── menubar-file.png │ ├── microsoft-store-badge.svg │ ├── multiselect-on-macos.png │ ├── prepareExtensionPermissionAlert@3x.png │ ├── redirect-a-to-b.png │ ├── release-notes │ │ └── multi-browser-support.png │ ├── rule-creation-open-another-website-rule-preview.png │ ├── rule-edit-example-result.png │ ├── safari-additional-permission-alert.webp │ ├── share-on-macos.png │ ├── share-sheet-ios.png │ └── social-card.png ├── misc │ ├── reddit-to-redlib.html │ ├── test.html │ ├── test.js │ └── url-opener.html ├── rules │ ├── add-parameters.redirectweb │ ├── reduce-twitter-addiction.redirectweb │ └── remove-parameters.redirectweb └── videos │ └── landing-demo.mov └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- 1 | GOOGLE_GENERATIVE_AI_API_KEY="YOUR_GOOGLE_GENERATIVE_AI_API_KEY" 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | generated/ 2 | 3 | # Dependencies 4 | /node_modules 5 | 6 | # Production 7 | /build 8 | 9 | # Generated files 10 | .docusaurus 11 | .cache-loader 12 | 13 | # Misc 14 | .DS_Store 15 | .env.local 16 | .env.development.local 17 | .env.test.local 18 | .env.production.local 19 | 20 | npm-debug.log* 21 | yarn-debug.log* 22 | yarn-error.log* 23 | 24 | /changelog 25 | 26 | .env 27 | 28 | library/rule-sets/*/i18n/en/messages.json 29 | -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "markdownlint/style/relaxed" 3 | } 4 | -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: [require.resolve('@docusaurus/core/lib/babel/preset')], 3 | }; 4 | -------------------------------------------------------------------------------- /build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -e 4 | 5 | cd "$(dirname "${BASH_SOURCE:-$0}")" 6 | 7 | rm -rf build 8 | 9 | pnpm install 10 | pnpm run build 11 | 12 | cp -R library build/ 13 | -------------------------------------------------------------------------------- /docs/privacy-policy.mdx: -------------------------------------------------------------------------------- 1 | # Privacy Policy 2 | 3 | **Redirect Web** does not collect your personal information. 4 | 5 | **Personal information** is information or an opinion about an identified individual or an individual who is reasonably identifiable. 6 | 7 | **Redirect Web** stores your redirect settings in your computer. Also, it may store your redirect settings in your private database on Apple's iCloud. It's only for the data sync feature. 8 | -------------------------------------------------------------------------------- /i18n/bg/docusaurus-plugin-content-blog/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/i18n/bg/docusaurus-plugin-content-blog/.gitkeep -------------------------------------------------------------------------------- /i18n/bg/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "Бележки по изданието", 4 | "description": "The title for the release notes used in SEO" 5 | }, 6 | "description": { 7 | "message": "Промени и актуализации на Redirect Web.", 8 | "description": "The description for the release notes used in SEO" 9 | }, 10 | "sidebar.title": { 11 | "message": "Бележки по изданието", 12 | "description": "The label for the left sidebar" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /i18n/bg/docusaurus-theme-classic/navbar.json: -------------------------------------------------------------------------------- 1 | { 2 | "logo.alt": { 3 | "message": "Лого на Redirect Web", 4 | "description": "The alt text of navbar logo" 5 | }, 6 | "item.label.Docs": { 7 | "message": "Документи", 8 | "description": "Navbar item with label Docs" 9 | }, 10 | "item.label.Release Notes": { 11 | "message": "Бележки по изданието", 12 | "description": "Navbar item with label Release Notes" 13 | } 14 | } -------------------------------------------------------------------------------- /i18n/cs/docusaurus-plugin-content-blog/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/i18n/cs/docusaurus-plugin-content-blog/.gitkeep -------------------------------------------------------------------------------- /i18n/cs/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "Poznámky k vydání", 4 | "description": "The title for the release notes used in SEO" 5 | }, 6 | "description": { 7 | "message": "Změny a aktualizace pro Redirect Web.", 8 | "description": "The description for the release notes used in SEO" 9 | }, 10 | "sidebar.title": { 11 | "message": "Poznámky k vydání", 12 | "description": "The label for the left sidebar" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /i18n/cs/docusaurus-theme-classic/navbar.json: -------------------------------------------------------------------------------- 1 | { 2 | "logo.alt": { 3 | "message": "Logo Redirect Web", 4 | "description": "The alt text of navbar logo" 5 | }, 6 | "item.label.Docs": { 7 | "message": "Dokumentace", 8 | "description": "Navbar item with label Docs" 9 | }, 10 | "item.label.Release Notes": { 11 | "message": "Poznámky k vydání", 12 | "description": "Navbar item with label Release Notes" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /i18n/da/docusaurus-plugin-content-blog/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/i18n/da/docusaurus-plugin-content-blog/.gitkeep -------------------------------------------------------------------------------- /i18n/da/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "Udgivelsesnoter", 4 | "description": "The title for the release notes used in SEO" 5 | }, 6 | "description": { 7 | "message": "Ændringer og opdateringer til Redirect Web.", 8 | "description": "The description for the release notes used in SEO" 9 | }, 10 | "sidebar.title": { 11 | "message": "Udgivelsesnoter", 12 | "description": "The label for the left sidebar" 13 | } 14 | } -------------------------------------------------------------------------------- /i18n/da/docusaurus-theme-classic/navbar.json: -------------------------------------------------------------------------------- 1 | { 2 | "logo.alt": { 3 | "message": "Redirect Web logo", 4 | "description": "The alt text of navbar logo" 5 | }, 6 | "item.label.Docs": { 7 | "message": "Dokumentation", 8 | "description": "Navbar item with label Docs" 9 | }, 10 | "item.label.Release Notes": { 11 | "message": "Udgivelsesnoter", 12 | "description": "Navbar item with label Release Notes" 13 | } 14 | } -------------------------------------------------------------------------------- /i18n/de/docusaurus-plugin-content-blog/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/i18n/de/docusaurus-plugin-content-blog/.gitkeep -------------------------------------------------------------------------------- /i18n/de/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "Versionshinweise", 4 | "description": "The title for the release notes used in SEO" 5 | }, 6 | "description": { 7 | "message": "Änderungen und Updates für Redirect Web.", 8 | "description": "The description for the release notes used in SEO" 9 | }, 10 | "sidebar.title": { 11 | "message": "Versionshinweise", 12 | "description": "The label for the left sidebar" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /i18n/de/docusaurus-theme-classic/navbar.json: -------------------------------------------------------------------------------- 1 | { 2 | "logo.alt": { 3 | "message": "Redirect Web Logo", 4 | "description": "The alt text of navbar logo" 5 | }, 6 | "item.label.Docs": { 7 | "message": "Dokumente", 8 | "description": "Navbar item with label Docs" 9 | }, 10 | "item.label.Release Notes": { 11 | "message": "Versionshinweise", 12 | "description": "Navbar item with label Release Notes" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /i18n/el/docusaurus-plugin-content-blog/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/i18n/el/docusaurus-plugin-content-blog/.gitkeep -------------------------------------------------------------------------------- /i18n/el/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "Σημειώσεις Έκδοσης", 4 | "description": "The title for the release notes used in SEO" 5 | }, 6 | "description": { 7 | "message": "Αλλαγές και ενημερώσεις στο Redirect Web.", 8 | "description": "The description for the release notes used in SEO" 9 | }, 10 | "sidebar.title": { 11 | "message": "Σημειώσεις Έκδοσης", 12 | "description": "The label for the left sidebar" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /i18n/el/docusaurus-theme-classic/navbar.json: -------------------------------------------------------------------------------- 1 | { 2 | "logo.alt": { 3 | "message": "Λογότυπο Redirect Web", 4 | "description": "The alt text of navbar logo" 5 | }, 6 | "item.label.Docs": { 7 | "message": "Έγγραφα", 8 | "description": "Navbar item with label Docs" 9 | }, 10 | "item.label.Release Notes": { 11 | "message": "Σημειώσεις Έκδοσης", 12 | "description": "Navbar item with label Release Notes" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "Release Notes", 4 | "description": "The title for the release notes used in SEO" 5 | }, 6 | "description": { 7 | "message": "Changes and updates to Redirect Web.", 8 | "description": "The description for the release notes used in SEO" 9 | }, 10 | "sidebar.title": { 11 | "message": "Release Notes", 12 | "description": "The label for the left sidebar" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /i18n/en/docusaurus-theme-classic/navbar.json: -------------------------------------------------------------------------------- 1 | { 2 | "logo.alt": { 3 | "message": "Redirect Web logo", 4 | "description": "The alt text of navbar logo" 5 | }, 6 | "item.label.Docs": { 7 | "message": "Docs", 8 | "description": "Navbar item with label Docs" 9 | }, 10 | "item.label.Release Notes": { 11 | "message": "Release Notes", 12 | "description": "Navbar item with label Release Notes" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-blog/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/i18n/es/docusaurus-plugin-content-blog/.gitkeep -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "Notas de la versión", 4 | "description": "The title for the release notes used in SEO" 5 | }, 6 | "description": { 7 | "message": "Cambios y actualizaciones de Redirect Web.", 8 | "description": "The description for the release notes used in SEO" 9 | }, 10 | "sidebar.title": { 11 | "message": "Notas de la versión", 12 | "description": "The label for the left sidebar" 13 | } 14 | } -------------------------------------------------------------------------------- /i18n/es/docusaurus-theme-classic/navbar.json: -------------------------------------------------------------------------------- 1 | { 2 | "logo.alt": { 3 | "message": "Logotipo de Redirect Web", 4 | "description": "The alt text of navbar logo" 5 | }, 6 | "item.label.Docs": { 7 | "message": "Documentos", 8 | "description": "Navbar item with label Docs" 9 | }, 10 | "item.label.Release Notes": { 11 | "message": "Notas de la versión", 12 | "description": "Navbar item with label Release Notes" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /i18n/et/docusaurus-plugin-content-blog/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/i18n/et/docusaurus-plugin-content-blog/.gitkeep -------------------------------------------------------------------------------- /i18n/et/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "Väljalaskemärkmed", 4 | "description": "The title for the release notes used in SEO" 5 | }, 6 | "description": { 7 | "message": "Muudatused ja uuendused Redirect Webis.", 8 | "description": "The description for the release notes used in SEO" 9 | }, 10 | "sidebar.title": { 11 | "message": "Väljalaskemärkmed", 12 | "description": "The label for the left sidebar" 13 | } 14 | } -------------------------------------------------------------------------------- /i18n/et/docusaurus-theme-classic/navbar.json: -------------------------------------------------------------------------------- 1 | { 2 | "logo.alt": { 3 | "message": "Redirect Web logo", 4 | "description": "The alt text of navbar logo" 5 | }, 6 | "item.label.Docs": { 7 | "message": "Dokumendid", 8 | "description": "Navbar item with label Docs" 9 | }, 10 | "item.label.Release Notes": { 11 | "message": "Väljalaskemärkmed", 12 | "description": "Navbar item with label Release Notes" 13 | } 14 | } -------------------------------------------------------------------------------- /i18n/fi/docusaurus-plugin-content-blog/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/i18n/fi/docusaurus-plugin-content-blog/.gitkeep -------------------------------------------------------------------------------- /i18n/fi/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "Julkaisutiedotteet", 4 | "description": "The title for the release notes used in SEO" 5 | }, 6 | "description": { 7 | "message": "Muutokset ja päivitykset Redirect Webiin.", 8 | "description": "The description for the release notes used in SEO" 9 | }, 10 | "sidebar.title": { 11 | "message": "Julkaisutiedotteet", 12 | "description": "The label for the left sidebar" 13 | } 14 | } -------------------------------------------------------------------------------- /i18n/fi/docusaurus-theme-classic/navbar.json: -------------------------------------------------------------------------------- 1 | { 2 | "logo.alt": { 3 | "message": "Redirect Web -logo", 4 | "description": "The alt text of navbar logo" 5 | }, 6 | "item.label.Docs": { 7 | "message": "Dokumentaatio", 8 | "description": "Navbar item with label Docs" 9 | }, 10 | "item.label.Release Notes": { 11 | "message": "Julkaisutiedotteet", 12 | "description": "Navbar item with label Release Notes" 13 | } 14 | } -------------------------------------------------------------------------------- /i18n/fr/docusaurus-plugin-content-blog/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/i18n/fr/docusaurus-plugin-content-blog/.gitkeep -------------------------------------------------------------------------------- /i18n/fr/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "Notes de version", 4 | "description": "The title for the release notes used in SEO" 5 | }, 6 | "description": { 7 | "message": "Modifications et mises à jour de Redirect Web.", 8 | "description": "The description for the release notes used in SEO" 9 | }, 10 | "sidebar.title": { 11 | "message": "Notes de version", 12 | "description": "The label for the left sidebar" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /i18n/fr/docusaurus-theme-classic/navbar.json: -------------------------------------------------------------------------------- 1 | { 2 | "logo.alt": { 3 | "message": "Logo de Redirect Web", 4 | "description": "The alt text of navbar logo" 5 | }, 6 | "item.label.Docs": { 7 | "message": "Docs", 8 | "description": "Navbar item with label Docs" 9 | }, 10 | "item.label.Release Notes": { 11 | "message": "Notes de version", 12 | "description": "Navbar item with label Release Notes" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /i18n/hu/docusaurus-plugin-content-blog/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/i18n/hu/docusaurus-plugin-content-blog/.gitkeep -------------------------------------------------------------------------------- /i18n/hu/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "Kiadási megjegyzések", 4 | "description": "The title for the release notes used in SEO" 5 | }, 6 | "description": { 7 | "message": "Változások és frissítések a Redirect Webben.", 8 | "description": "The description for the release notes used in SEO" 9 | }, 10 | "sidebar.title": { 11 | "message": "Kiadási megjegyzések", 12 | "description": "The label for the left sidebar" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /i18n/hu/docusaurus-theme-classic/navbar.json: -------------------------------------------------------------------------------- 1 | { 2 | "logo.alt": { 3 | "message": "Redirect Web logó", 4 | "description": "The alt text of navbar logo" 5 | }, 6 | "item.label.Docs": { 7 | "message": "Dokumentáció", 8 | "description": "Navbar item with label Docs" 9 | }, 10 | "item.label.Release Notes": { 11 | "message": "Kiadási megjegyzések", 12 | "description": "Navbar item with label Release Notes" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /i18n/id/docusaurus-plugin-content-blog/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/i18n/id/docusaurus-plugin-content-blog/.gitkeep -------------------------------------------------------------------------------- /i18n/id/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "Catatan Rilis", 4 | "description": "The title for the release notes used in SEO" 5 | }, 6 | "description": { 7 | "message": "Perubahan dan pembaruan pada Redirect Web.", 8 | "description": "The description for the release notes used in SEO" 9 | }, 10 | "sidebar.title": { 11 | "message": "Catatan Rilis", 12 | "description": "The label for the left sidebar" 13 | } 14 | } -------------------------------------------------------------------------------- /i18n/id/docusaurus-theme-classic/navbar.json: -------------------------------------------------------------------------------- 1 | { 2 | "logo.alt": { 3 | "message": "Logo Redirect Web", 4 | "description": "The alt text of navbar logo" 5 | }, 6 | "item.label.Docs": { 7 | "message": "Dokumen", 8 | "description": "Navbar item with label Docs" 9 | }, 10 | "item.label.Release Notes": { 11 | "message": "Catatan Rilis", 12 | "description": "Navbar item with label Release Notes" 13 | } 14 | } -------------------------------------------------------------------------------- /i18n/it/docusaurus-plugin-content-blog/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/i18n/it/docusaurus-plugin-content-blog/.gitkeep -------------------------------------------------------------------------------- /i18n/it/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "Note di rilascio", 4 | "description": "The title for the release notes used in SEO" 5 | }, 6 | "description": { 7 | "message": "Modifiche e aggiornamenti a Redirect Web.", 8 | "description": "The description for the release notes used in SEO" 9 | }, 10 | "sidebar.title": { 11 | "message": "Note di rilascio", 12 | "description": "The label for the left sidebar" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /i18n/it/docusaurus-theme-classic/navbar.json: -------------------------------------------------------------------------------- 1 | { 2 | "logo.alt": { 3 | "message": "Logo di Redirect Web", 4 | "description": "The alt text of navbar logo" 5 | }, 6 | "item.label.Docs": { 7 | "message": "Documenti", 8 | "description": "Navbar item with label Docs" 9 | }, 10 | "item.label.Release Notes": { 11 | "message": "Note di rilascio", 12 | "description": "Navbar item with label Release Notes" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-blog/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/i18n/ja/docusaurus-plugin-content-blog/.gitkeep -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "リリースノート", 4 | "description": "The title for the release notes used in SEO" 5 | }, 6 | "description": { 7 | "message": "Redirect Webの変更と更新。", 8 | "description": "The description for the release notes used in SEO" 9 | }, 10 | "sidebar.title": { 11 | "message": "リリースノート", 12 | "description": "The label for the left sidebar" 13 | } 14 | } -------------------------------------------------------------------------------- /i18n/ja/docusaurus-theme-classic/navbar.json: -------------------------------------------------------------------------------- 1 | { 2 | "logo.alt": { 3 | "message": "Redirect Webロゴ", 4 | "description": "The alt text of navbar logo" 5 | }, 6 | "item.label.Docs": { 7 | "message": "ドキュメント", 8 | "description": "Navbar item with label Docs" 9 | }, 10 | "item.label.Release Notes": { 11 | "message": "リリースノート", 12 | "description": "Navbar item with label Release Notes" 13 | } 14 | } -------------------------------------------------------------------------------- /i18n/ko/docusaurus-plugin-content-blog/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/i18n/ko/docusaurus-plugin-content-blog/.gitkeep -------------------------------------------------------------------------------- /i18n/ko/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "릴리스 노트", 4 | "description": "The title for the release notes used in SEO" 5 | }, 6 | "description": { 7 | "message": "Redirect Web의 변경 사항 및 업데이트.", 8 | "description": "The description for the release notes used in SEO" 9 | }, 10 | "sidebar.title": { 11 | "message": "릴리스 노트", 12 | "description": "The label for the left sidebar" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /i18n/ko/docusaurus-theme-classic/navbar.json: -------------------------------------------------------------------------------- 1 | { 2 | "logo.alt": { 3 | "message": "Redirect Web 로고", 4 | "description": "The alt text of navbar logo" 5 | }, 6 | "item.label.Docs": { 7 | "message": "문서", 8 | "description": "Navbar item with label Docs" 9 | }, 10 | "item.label.Release Notes": { 11 | "message": "릴리스 노트", 12 | "description": "Navbar item with label Release Notes" 13 | } 14 | } -------------------------------------------------------------------------------- /i18n/lt/docusaurus-plugin-content-blog/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/i18n/lt/docusaurus-plugin-content-blog/.gitkeep -------------------------------------------------------------------------------- /i18n/lt/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "Išleidimo pastabos", 4 | "description": "The title for the release notes used in SEO" 5 | }, 6 | "description": { 7 | "message": "Pakeitimai ir atnaujinimai, skirti „Redirect Web“.", 8 | "description": "The description for the release notes used in SEO" 9 | }, 10 | "sidebar.title": { 11 | "message": "Išleidimo pastabos", 12 | "description": "The label for the left sidebar" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /i18n/lt/docusaurus-theme-classic/navbar.json: -------------------------------------------------------------------------------- 1 | { 2 | "logo.alt": { 3 | "message": "„Redirect Web“ logotipas", 4 | "description": "The alt text of navbar logo" 5 | }, 6 | "item.label.Docs": { 7 | "message": "Dokumentai", 8 | "description": "Navbar item with label Docs" 9 | }, 10 | "item.label.Release Notes": { 11 | "message": "Išleidimo pastabos", 12 | "description": "Navbar item with label Release Notes" 13 | } 14 | } -------------------------------------------------------------------------------- /i18n/lv/docusaurus-plugin-content-blog/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/i18n/lv/docusaurus-plugin-content-blog/.gitkeep -------------------------------------------------------------------------------- /i18n/lv/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "Izlaiduma piezīmes", 4 | "description": "The title for the release notes used in SEO" 5 | }, 6 | "description": { 7 | "message": "Izmaiņas un atjauninājumi pakalpojumā Redirect Web.", 8 | "description": "The description for the release notes used in SEO" 9 | }, 10 | "sidebar.title": { 11 | "message": "Izlaiduma piezīmes", 12 | "description": "The label for the left sidebar" 13 | } 14 | } -------------------------------------------------------------------------------- /i18n/lv/docusaurus-theme-classic/navbar.json: -------------------------------------------------------------------------------- 1 | { 2 | "logo.alt": { 3 | "message": "Redirect Web logotips", 4 | "description": "The alt text of navbar logo" 5 | }, 6 | "item.label.Docs": { 7 | "message": "Dokumentācija", 8 | "description": "Navbar item with label Docs" 9 | }, 10 | "item.label.Release Notes": { 11 | "message": "Izlaiduma piezīmes", 12 | "description": "Navbar item with label Release Notes" 13 | } 14 | } -------------------------------------------------------------------------------- /i18n/nl/docusaurus-plugin-content-blog/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/i18n/nl/docusaurus-plugin-content-blog/.gitkeep -------------------------------------------------------------------------------- /i18n/nl/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "Release-opmerkingen", 4 | "description": "The title for the release notes used in SEO" 5 | }, 6 | "description": { 7 | "message": "Wijzigingen en updates voor Redirect Web.", 8 | "description": "The description for the release notes used in SEO" 9 | }, 10 | "sidebar.title": { 11 | "message": "Release-opmerkingen", 12 | "description": "The label for the left sidebar" 13 | } 14 | } -------------------------------------------------------------------------------- /i18n/nl/docusaurus-theme-classic/navbar.json: -------------------------------------------------------------------------------- 1 | { 2 | "logo.alt": { 3 | "message": "Redirect Web-logo", 4 | "description": "The alt text of navbar logo" 5 | }, 6 | "item.label.Docs": { 7 | "message": "Documenten", 8 | "description": "Navbar item with label Docs" 9 | }, 10 | "item.label.Release Notes": { 11 | "message": "Release-opmerkingen", 12 | "description": "Navbar item with label Release Notes" 13 | } 14 | } -------------------------------------------------------------------------------- /i18n/pl/docusaurus-plugin-content-blog/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/i18n/pl/docusaurus-plugin-content-blog/.gitkeep -------------------------------------------------------------------------------- /i18n/pl/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "Informacje o wydaniu", 4 | "description": "The title for the release notes used in SEO" 5 | }, 6 | "description": { 7 | "message": "Zmiany i aktualizacje w Redirect Web.", 8 | "description": "The description for the release notes used in SEO" 9 | }, 10 | "sidebar.title": { 11 | "message": "Informacje o wydaniu", 12 | "description": "The label for the left sidebar" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /i18n/pl/docusaurus-theme-classic/navbar.json: -------------------------------------------------------------------------------- 1 | { 2 | "logo.alt": { 3 | "message": "Logo Redirect Web", 4 | "description": "The alt text of navbar logo" 5 | }, 6 | "item.label.Docs": { 7 | "message": "Dokumenty", 8 | "description": "Navbar item with label Docs" 9 | }, 10 | "item.label.Release Notes": { 11 | "message": "Informacje o wydaniu", 12 | "description": "Navbar item with label Release Notes" 13 | } 14 | } -------------------------------------------------------------------------------- /i18n/pt-br/docusaurus-plugin-content-blog/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/i18n/pt-br/docusaurus-plugin-content-blog/.gitkeep -------------------------------------------------------------------------------- /i18n/pt-br/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "Notas de Lançamento", 4 | "description": "The title for the release notes used in SEO" 5 | }, 6 | "description": { 7 | "message": "Alterações e atualizações do Redirect Web.", 8 | "description": "The description for the release notes used in SEO" 9 | }, 10 | "sidebar.title": { 11 | "message": "Notas de Lançamento", 12 | "description": "The label for the left sidebar" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /i18n/pt-br/docusaurus-theme-classic/navbar.json: -------------------------------------------------------------------------------- 1 | { 2 | "logo.alt": { 3 | "message": "Logotipo do Redirect Web", 4 | "description": "The alt text of navbar logo" 5 | }, 6 | "item.label.Docs": { 7 | "message": "Documentos", 8 | "description": "Navbar item with label Docs" 9 | }, 10 | "item.label.Release Notes": { 11 | "message": "Notas de Lançamento", 12 | "description": "Navbar item with label Release Notes" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /i18n/pt-pt/docusaurus-plugin-content-blog/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/i18n/pt-pt/docusaurus-plugin-content-blog/.gitkeep -------------------------------------------------------------------------------- /i18n/pt-pt/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "Notas de Lançamento", 4 | "description": "The title for the release notes used in SEO" 5 | }, 6 | "description": { 7 | "message": "Alterações e atualizações ao Redirect Web.", 8 | "description": "The description for the release notes used in SEO" 9 | }, 10 | "sidebar.title": { 11 | "message": "Notas de Lançamento", 12 | "description": "The label for the left sidebar" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /i18n/pt-pt/docusaurus-theme-classic/navbar.json: -------------------------------------------------------------------------------- 1 | { 2 | "logo.alt": { 3 | "message": "Logótipo do Redirect Web", 4 | "description": "The alt text of navbar logo" 5 | }, 6 | "item.label.Docs": { 7 | "message": "Documentos", 8 | "description": "Navbar item with label Docs" 9 | }, 10 | "item.label.Release Notes": { 11 | "message": "Notas de Lançamento", 12 | "description": "Navbar item with label Release Notes" 13 | } 14 | } -------------------------------------------------------------------------------- /i18n/ro/docusaurus-plugin-content-blog/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/i18n/ro/docusaurus-plugin-content-blog/.gitkeep -------------------------------------------------------------------------------- /i18n/ro/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "Note de lansare", 4 | "description": "The title for the release notes used in SEO" 5 | }, 6 | "description": { 7 | "message": "Modificări și actualizări la Redirect Web.", 8 | "description": "The description for the release notes used in SEO" 9 | }, 10 | "sidebar.title": { 11 | "message": "Note de lansare", 12 | "description": "The label for the left sidebar" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /i18n/ro/docusaurus-theme-classic/navbar.json: -------------------------------------------------------------------------------- 1 | { 2 | "logo.alt": { 3 | "message": "Sigla Redirect Web", 4 | "description": "The alt text of navbar logo" 5 | }, 6 | "item.label.Docs": { 7 | "message": "Documentație", 8 | "description": "Navbar item with label Docs" 9 | }, 10 | "item.label.Release Notes": { 11 | "message": "Note de lansare", 12 | "description": "Navbar item with label Release Notes" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /i18n/ru/docusaurus-plugin-content-blog/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/i18n/ru/docusaurus-plugin-content-blog/.gitkeep -------------------------------------------------------------------------------- /i18n/ru/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "Заметки о выпуске", 4 | "description": "The title for the release notes used in SEO" 5 | }, 6 | "description": { 7 | "message": "Изменения и обновления Redirect Web.", 8 | "description": "The description for the release notes used in SEO" 9 | }, 10 | "sidebar.title": { 11 | "message": "Заметки о выпуске", 12 | "description": "The label for the left sidebar" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /i18n/ru/docusaurus-theme-classic/navbar.json: -------------------------------------------------------------------------------- 1 | { 2 | "logo.alt": { 3 | "message": "Логотип Redirect Web", 4 | "description": "The alt text of navbar logo" 5 | }, 6 | "item.label.Docs": { 7 | "message": "Документация", 8 | "description": "Navbar item with label Docs" 9 | }, 10 | "item.label.Release Notes": { 11 | "message": "Заметки о выпуске", 12 | "description": "Navbar item with label Release Notes" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /i18n/sk/docusaurus-plugin-content-blog/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/i18n/sk/docusaurus-plugin-content-blog/.gitkeep -------------------------------------------------------------------------------- /i18n/sk/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "Poznámky k vydaniu", 4 | "description": "The title for the release notes used in SEO" 5 | }, 6 | "description": { 7 | "message": "Zmeny a aktualizácie pre Redirect Web.", 8 | "description": "The description for the release notes used in SEO" 9 | }, 10 | "sidebar.title": { 11 | "message": "Poznámky k vydaniu", 12 | "description": "The label for the left sidebar" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /i18n/sk/docusaurus-theme-classic/navbar.json: -------------------------------------------------------------------------------- 1 | { 2 | "logo.alt": { 3 | "message": "Logo Redirect Web", 4 | "description": "The alt text of navbar logo" 5 | }, 6 | "item.label.Docs": { 7 | "message": "Dokumentácia", 8 | "description": "Navbar item with label Docs" 9 | }, 10 | "item.label.Release Notes": { 11 | "message": "Poznámky k vydaniu", 12 | "description": "Navbar item with label Release Notes" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /i18n/sl/docusaurus-plugin-content-blog/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/i18n/sl/docusaurus-plugin-content-blog/.gitkeep -------------------------------------------------------------------------------- /i18n/sl/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "Opombe ob izdaji", 4 | "description": "The title for the release notes used in SEO" 5 | }, 6 | "description": { 7 | "message": "Spremembe in posodobitve za Redirect Web.", 8 | "description": "The description for the release notes used in SEO" 9 | }, 10 | "sidebar.title": { 11 | "message": "Opombe ob izdaji", 12 | "description": "The label for the left sidebar" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /i18n/sl/docusaurus-theme-classic/navbar.json: -------------------------------------------------------------------------------- 1 | { 2 | "logo.alt": { 3 | "message": "Logotip Redirect Web", 4 | "description": "The alt text of navbar logo" 5 | }, 6 | "item.label.Docs": { 7 | "message": "Dokumentacija", 8 | "description": "Navbar item with label Docs" 9 | }, 10 | "item.label.Release Notes": { 11 | "message": "Opombe ob izdaji", 12 | "description": "Navbar item with label Release Notes" 13 | } 14 | } -------------------------------------------------------------------------------- /i18n/sv/docusaurus-plugin-content-blog/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/i18n/sv/docusaurus-plugin-content-blog/.gitkeep -------------------------------------------------------------------------------- /i18n/sv/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "Versionsanteckningar", 4 | "description": "The title for the release notes used in SEO" 5 | }, 6 | "description": { 7 | "message": "Ändringar och uppdateringar av Redirect Web.", 8 | "description": "The description for the release notes used in SEO" 9 | }, 10 | "sidebar.title": { 11 | "message": "Versionsanteckningar", 12 | "description": "The label for the left sidebar" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /i18n/sv/docusaurus-theme-classic/navbar.json: -------------------------------------------------------------------------------- 1 | { 2 | "logo.alt": { 3 | "message": "Redirect Web logotyp", 4 | "description": "The alt text of navbar logo" 5 | }, 6 | "item.label.Docs": { 7 | "message": "Dokumentation", 8 | "description": "Navbar item with label Docs" 9 | }, 10 | "item.label.Release Notes": { 11 | "message": "Versionsanteckningar", 12 | "description": "Navbar item with label Release Notes" 13 | } 14 | } -------------------------------------------------------------------------------- /i18n/tr/docusaurus-plugin-content-blog/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/i18n/tr/docusaurus-plugin-content-blog/.gitkeep -------------------------------------------------------------------------------- /i18n/tr/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "Sürüm Notları", 4 | "description": "The title for the release notes used in SEO" 5 | }, 6 | "description": { 7 | "message": "Redirect Web'deki değişiklikler ve güncellemeler.", 8 | "description": "The description for the release notes used in SEO" 9 | }, 10 | "sidebar.title": { 11 | "message": "Sürüm Notları", 12 | "description": "The label for the left sidebar" 13 | } 14 | } -------------------------------------------------------------------------------- /i18n/tr/docusaurus-theme-classic/navbar.json: -------------------------------------------------------------------------------- 1 | { 2 | "logo.alt": { 3 | "message": "Redirect Web logosu", 4 | "description": "The alt text of navbar logo" 5 | }, 6 | "item.label.Docs": { 7 | "message": "Belgeler", 8 | "description": "Navbar item with label Docs" 9 | }, 10 | "item.label.Release Notes": { 11 | "message": "Sürüm Notları", 12 | "description": "Navbar item with label Release Notes" 13 | } 14 | } -------------------------------------------------------------------------------- /i18n/uk/docusaurus-plugin-content-blog/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/i18n/uk/docusaurus-plugin-content-blog/.gitkeep -------------------------------------------------------------------------------- /i18n/uk/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "Примітки до випуску", 4 | "description": "The title for the release notes used in SEO" 5 | }, 6 | "description": { 7 | "message": "Зміни та оновлення Redirect Web.", 8 | "description": "The description for the release notes used in SEO" 9 | }, 10 | "sidebar.title": { 11 | "message": "Примітки до випуску", 12 | "description": "The label for the left sidebar" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /i18n/uk/docusaurus-theme-classic/navbar.json: -------------------------------------------------------------------------------- 1 | { 2 | "logo.alt": { 3 | "message": "Логотип Redirect Web", 4 | "description": "The alt text of navbar logo" 5 | }, 6 | "item.label.Docs": { 7 | "message": "Документація", 8 | "description": "Navbar item with label Docs" 9 | }, 10 | "item.label.Release Notes": { 11 | "message": "Примітки до випуску", 12 | "description": "Navbar item with label Release Notes" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /i18n/zh-hans/docusaurus-plugin-content-blog/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/i18n/zh-hans/docusaurus-plugin-content-blog/.gitkeep -------------------------------------------------------------------------------- /i18n/zh-hans/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "发布说明", 4 | "description": "The title for the release notes used in SEO" 5 | }, 6 | "description": { 7 | "message": "Redirect Web 的更改和更新。", 8 | "description": "The description for the release notes used in SEO" 9 | }, 10 | "sidebar.title": { 11 | "message": "发布说明", 12 | "description": "The label for the left sidebar" 13 | } 14 | } -------------------------------------------------------------------------------- /i18n/zh-hans/docusaurus-plugin-content-docs/current/contact-us.mdx: -------------------------------------------------------------------------------- 1 | # 联系我们 2 | 3 | 如果您对 Redirect Web 有任何疑问、反馈或问题,我们随时为您提供帮助。以下是最佳联系方式: 4 | 5 | - **[GitHub Issues](https://github.com/mshibanami/RedirectWeb/issues)**:如果您遇到任何错误或想请求新功能,请访问 GitHub Issues 页面。您可以浏览现有问题、提交新问题并跟踪问题的进展。 6 | - **[GitHub Discussions](https://github.com/mshibanami/RedirectWeb/discussions)**:如果您有任何问题或想从开发者或其他用户那里获得帮助,请访问 GitHub Discussions 页面。您可以开始新的讨论、加入现有讨论并从社区获得帮助。 7 | - **反馈表单**:您可以通过 Redirect Web 应用中的反馈表单向我们发送反馈。这会将电子邮件直接发送给开发者,因此您的反馈将对其他用户保密。 8 | 9 | 感谢您使用 Redirect Web!我们感谢您的支持和反馈。 -------------------------------------------------------------------------------- /i18n/zh-hans/docusaurus-theme-classic/navbar.json: -------------------------------------------------------------------------------- 1 | { 2 | "logo.alt": { 3 | "message": "Redirect Web 标志", 4 | "description": "The alt text of navbar logo" 5 | }, 6 | "item.label.Docs": { 7 | "message": "文档", 8 | "description": "Navbar item with label Docs" 9 | }, 10 | "item.label.Release Notes": { 11 | "message": "发布说明", 12 | "description": "Navbar item with label Release Notes" 13 | } 14 | } -------------------------------------------------------------------------------- /library/rule-sets/0_example-rule/i18n/ja/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "このルールにより、ブラウザで https://example.com/hello を開くと、「hello」という単語の検索結果が表示されます。\n\nこれは説明のためのサンプルルールです。\nこのルールを変更または削除して、独自のリダイレクトルールをお楽しみください!🚀\n", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "リダイレクトルールの例", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/0_example-rule/i18n/ko/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "이 규칙을 사용하면 브라우저에서 https://example.com/hello 를 열 때 \"hello\"라는 단어에 대한 검색 결과가 표시됩니다.\n\n이것은 설명을 위한 샘플 규칙입니다.\n자신만의 리디렉션 규칙을 즐기려면 이 규칙을 변경하거나 제거하세요! 🚀\n", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "예시 리디렉션 규칙", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/0_example-rule/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "contributorGitHubIds": [ 3 | "mshibanami" 4 | ], 5 | "primaryCategoryId": "other" 6 | } 7 | -------------------------------------------------------------------------------- /library/rule-sets/10_DELETED_reddit-new-layout/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/library/rule-sets/10_DELETED_reddit-new-layout/.gitkeep -------------------------------------------------------------------------------- /library/rule-sets/11_reddit-old-layout/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/library/rule-sets/11_reddit-old-layout/cover.webp -------------------------------------------------------------------------------- /library/rule-sets/11_reddit-old-layout/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "contributorGitHubIds": [ 3 | "mshibanami" 4 | ], 5 | "imageFiles": [ 6 | "cover.webp" 7 | ], 8 | "primaryCategoryId": "social_media" 9 | } 10 | -------------------------------------------------------------------------------- /library/rule-sets/12_google-search-disable-ai/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/library/rule-sets/12_google-search-disable-ai/cover.webp -------------------------------------------------------------------------------- /library/rule-sets/12_google-search-disable-ai/i18n/ja/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "このルールは、検索結果をウェブタブに表示するためにクエリパラメータ udm=14 を追加します。\n\nウェブタブでは、AI概要、関連画像、引用、「他の人はこちらも質問」セクションなどの追加機能が無効になるため、実際の検索結果に集中できます。", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google検索: AI機能などを無効にする", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/12_google-search-disable-ai/i18n/ko/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "이 규칙은 웹 탭에 검색 결과를 표시하기 위해 쿼리 매개변수 udm=14를 추가합니다.\n\n웹 탭은 AI 개요, 관련 이미지, 인용문, \"사람들이 자주 묻는 질문\" 섹션 등과 같은 추가 기능을 비활성화하므로 실제 검색 결과에 집중할 수 있습니다.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google 검색: AI 기능 등 비활성화", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/12_google-search-disable-ai/i18n/zh-hans/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "此规则添加查询参数 udm=14 以在“网页”选项卡上显示搜索结果。\n\n“网页”选项卡禁用额外功能,例如 AI 概览、相关图片、引用、“人们还会问”部分等,因此您可以专注于实际的搜索结果。", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google 搜索:禁用 AI 功能等", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/12_google-search-disable-ai/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "aboutUrl": "https://github.com/mshibanami/redirect-web/discussions/31", 3 | "contributorGitHubIds": [ 4 | "mshibanami" 5 | ], 6 | "imageFiles": [ 7 | "cover.webp" 8 | ], 9 | "primaryCategoryId": "search" 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/13_youtube_watch_embed/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/library/rule-sets/13_youtube_watch_embed/cover.webp -------------------------------------------------------------------------------- /library/rule-sets/13_youtube_watch_embed/i18n/ja/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "もしあなたが私のように、YouTubeのコメント欄、関連動画、または迷惑なポップアップメッセージに用がないのであれば、このリダイレクトルールはYouTubeの「watch」リンクから「embed」リンクへ自動的に移動させます。後者は画面全体に表示されます。", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "YouTube Watch → Embed", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/13_youtube_watch_embed/i18n/ko/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "저처럼 YouTube에서 댓글 섹션, 관련 동영상 또는 성가신 팝업 메시지가 필요 없는 경우, 이 리디렉션 규칙은 YouTube \"시청\" 링크를 \"삽입\" 링크로 자동으로 이동시켜 후자가 화면을 채웁니다.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "YouTube 시청 → 삽입", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/13_youtube_watch_embed/i18n/zh-hans/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "如果您像我一样,不需要 YouTube 上的评论区、相关视频或烦人的弹出消息,此重定向规则将自动将您从 YouTube“观看”链接转到“嵌入”链接——后者会填满屏幕。", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "YouTube 观看 → 嵌入", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/13_youtube_watch_embed/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "aboutUrl": "https://github.com/mshibanami/redirect-web/discussions/17", 3 | "contributorGitHubIds": [ 4 | "mattieb" 5 | ], 6 | "imageFiles": [ 7 | "cover.webp" 8 | ], 9 | "primaryCategoryId": "arts_and_entertainment", 10 | "secondaryCategoryId": "social_media" 11 | } 12 | -------------------------------------------------------------------------------- /library/rule-sets/14_facebook_always_show_most_recent_feed/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/library/rule-sets/14_facebook_always_show_most_recent_feed/cover.webp -------------------------------------------------------------------------------- /library/rule-sets/14_facebook_always_show_most_recent_feed/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "aboutUrl": "https://github.com/mshibanami/redirect-web/discussions/33", 3 | "contributorGitHubIds": [ 4 | "mbirth" 5 | ], 6 | "imageFiles": [ 7 | "cover.webp" 8 | ], 9 | "primaryCategoryId": "social_media", 10 | "supportedDeviceTypes": [ 11 | "desktop", 12 | "tablet" 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /library/rule-sets/15_google_maps_to_apple_maps/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/library/rule-sets/15_google_maps_to_apple_maps/cover.webp -------------------------------------------------------------------------------- /library/rule-sets/16_google-search-to-kagi/i18n/sk/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Toto automaticky presmeruje z Vyhľadávania Google na Kagi.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Kagi", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/16_google_search_to_kagi/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/library/rule-sets/16_google_search_to_kagi/cover.webp -------------------------------------------------------------------------------- /library/rule-sets/16_google_search_to_kagi/i18n/bg/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Това пренасочва автоматично от Google Търсене към Kagi.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Kagi", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/16_google_search_to_kagi/i18n/cs/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Toto přesměruje z vyhledávání Google na Kagi automaticky.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Kagi", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/16_google_search_to_kagi/i18n/da/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Dette omdirigerer automatisk fra Google Søgning til Kagi.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Kagi", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/16_google_search_to_kagi/i18n/de/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Dies leitet automatisch von der Google-Suche zu Kagi um.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Kagi", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/16_google_search_to_kagi/i18n/el/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Αυτό ανακατευθύνει αυτόματα από την Αναζήτηση Google στο Kagi.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Kagi", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/16_google_search_to_kagi/i18n/es/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Esto redirige automáticamente de la Búsqueda de Google a Kagi.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Kagi", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/16_google_search_to_kagi/i18n/et/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "See suunab Google otsingust automaatselt Kagisse.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Kagi", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/16_google_search_to_kagi/i18n/fi/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Tämä ohjaa Google-hausta Kagiin automaattisesti.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Kagi", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/16_google_search_to_kagi/i18n/fr/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Ceci redirige automatiquement de la recherche Google vers Kagi.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Kagi", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/16_google_search_to_kagi/i18n/hu/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Ez automatikusan átirányít a Google Keresésről Kagi-ra.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Kagi", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/16_google_search_to_kagi/i18n/id/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Ini mengalihkan dari Google Search ke Kagi secara otomatis.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Kagi", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/16_google_search_to_kagi/i18n/it/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Questo reindirizza automaticamente da Google Search a Kagi.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Kagi", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/16_google_search_to_kagi/i18n/ja/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Google検索からKagiに自動的にリダイレクトします。", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Kagi", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/16_google_search_to_kagi/i18n/ko/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "이 규칙은 Google 검색을 Kagi로 자동으로 리디렉션합니다.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Kagi", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/16_google_search_to_kagi/i18n/lt/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Tai automatiškai nukreipia iš „Google“ paieškos į „Kagi“.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "„Google“ → „Kagi“", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/16_google_search_to_kagi/i18n/lv/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Tas automātiski novirza no Google meklēšanas uz Kagi.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Kagi", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/16_google_search_to_kagi/i18n/nl/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Dit leidt automatisch om van Google Zoeken naar Kagi.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Kagi", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/16_google_search_to_kagi/i18n/pl/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "To przekierowuje z wyszukiwarki Google do Kagi automatycznie.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Kagi", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/16_google_search_to_kagi/i18n/pt-br/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Isso redireciona da Pesquisa Google para o Kagi automaticamente.", 4 | "description": "Os comentários da regra de redirecionamento #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Kagi", 8 | "description": "O título da regra de redirecionamento #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/16_google_search_to_kagi/i18n/pt-pt/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Isto redireciona automaticamente da Pesquisa Google para o Kagi.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Kagi", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/16_google_search_to_kagi/i18n/ro/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Aceasta redirecționează automat de la Căutarea Google la Kagi.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Kagi", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/16_google_search_to_kagi/i18n/ru/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Это автоматически перенаправляет из Google Поиска в Kagi.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Kagi", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/16_google_search_to_kagi/i18n/sk/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Toto automaticky presmeruje z vyhľadávania Google na Kagi.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Kagi", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/16_google_search_to_kagi/i18n/sl/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "To samodejno preusmeri iz Google Iskanja na Kagi.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Kagi", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/16_google_search_to_kagi/i18n/sv/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Detta omdirigerar automatiskt från Google Sök till Kagi.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Kagi", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/16_google_search_to_kagi/i18n/tr/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Bu, Google Arama'dan Kagi'ye otomatik olarak yönlendirir.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Kagi", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/16_google_search_to_kagi/i18n/uk/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Це автоматично перенаправляє з Google Пошуку на Kagi.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Kagi", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/16_google_search_to_kagi/i18n/zh-hans/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "此规则将 Google 搜索自动重定向到 Kagi。", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Kagi", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/16_google_search_to_kagi/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "aboutUrl": "https://github.com/mshibanami/redirect-web/discussions/47", 3 | "contributorGitHubIds": [ 4 | "inhzus" 5 | ], 6 | "imageFiles": [ 7 | "cover.webp" 8 | ], 9 | "primaryCategoryId": "search", 10 | "secondaryCategoryId": "privacy_and_security" 11 | } 12 | -------------------------------------------------------------------------------- /library/rule-sets/17_google_search_to_startpage/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/library/rule-sets/17_google_search_to_startpage/cover.webp -------------------------------------------------------------------------------- /library/rule-sets/17_google_search_to_startpage/i18n/bg/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Това пренасочва автоматично от Google Търсене към Startpage.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Startpage", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/17_google_search_to_startpage/i18n/cs/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Toto přesměruje z vyhledávání Google na Startpage automaticky.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Startpage", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/17_google_search_to_startpage/i18n/da/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Dette omdirigerer automatisk fra Google Søgning til Startpage.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Startpage", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/17_google_search_to_startpage/i18n/de/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Dies leitet automatisch von der Google-Suche zu Startpage um.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Startpage", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/17_google_search_to_startpage/i18n/el/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Αυτό ανακατευθύνει αυτόματα από την Αναζήτηση Google στο Startpage.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Startpage", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/17_google_search_to_startpage/i18n/es/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Esto redirige automáticamente de la Búsqueda de Google a Startpage.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Startpage", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/17_google_search_to_startpage/i18n/et/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "See suunab Google otsingust automaatselt Startpage'i.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Startpage", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/17_google_search_to_startpage/i18n/fi/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Tämä ohjaa Google-hausta Startpageen automaattisesti.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Startpage", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/17_google_search_to_startpage/i18n/fr/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Ceci redirige automatiquement de la recherche Google vers Startpage.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Startpage", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/17_google_search_to_startpage/i18n/hu/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Ez automatikusan átirányít a Google Keresésről a Startpage-re.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Startpage", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/17_google_search_to_startpage/i18n/id/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Ini mengalihkan dari Google Search ke Startpage secara otomatis.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Startpage", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/17_google_search_to_startpage/i18n/it/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Questo reindirizza automaticamente da Google Search a Startpage.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Startpage", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/17_google_search_to_startpage/i18n/ja/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Google検索からStartpageに自動的にリダイレクトします。", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Startpage", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/17_google_search_to_startpage/i18n/ko/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "이 규칙은 Google 검색을 Startpage로 자동으로 리디렉션합니다.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Startpage", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/17_google_search_to_startpage/i18n/lt/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Tai automatiškai nukreipia iš „Google“ paieškos į „Startpage“.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "„Google“ → „Startpage“", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/17_google_search_to_startpage/i18n/lv/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Tas automātiski novirza no Google meklēšanas uz Startpage.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Startpage", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/17_google_search_to_startpage/i18n/nl/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Dit leidt automatisch om van Google Zoeken naar Startpage.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Startpage", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/17_google_search_to_startpage/i18n/pl/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "To przekierowuje z wyszukiwarki Google do Startpage automatycznie.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Startpage", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/17_google_search_to_startpage/i18n/pt-br/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Isso redireciona da Pesquisa Google para o Startpage automaticamente.", 4 | "description": "Os comentários da regra de redirecionamento #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Startpage", 8 | "description": "O título da regra de redirecionamento #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/17_google_search_to_startpage/i18n/pt-pt/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Isto redireciona automaticamente da Pesquisa Google para o Startpage.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Startpage", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/17_google_search_to_startpage/i18n/ro/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Aceasta redirecționează automat de la Căutarea Google la Startpage.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Startpage", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/17_google_search_to_startpage/i18n/ru/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Это автоматически перенаправляет из Google Поиска в Startpage.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Startpage", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/17_google_search_to_startpage/i18n/sk/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Toto automaticky presmeruje z Vyhľadávania Google na Startpage.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Startpage", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/17_google_search_to_startpage/i18n/sl/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "To samodejno preusmeri iz Google Iskanja na Startpage.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Startpage", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/17_google_search_to_startpage/i18n/sv/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Detta omdirigerar automatiskt från Google Sök till Startpage.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Startpage", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/17_google_search_to_startpage/i18n/tr/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Bu, Google Arama'dan Startpage'e otomatik olarak yönlendirir.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Startpage", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/17_google_search_to_startpage/i18n/uk/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Це автоматично перенаправляє з Google Search на Startpage.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Startpage", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/17_google_search_to_startpage/i18n/zh-hans/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "此规则将 Google 搜索自动重定向到 Startpage。", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Startpage", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/17_google_search_to_startpage/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "contributorGitHubIds": [ 3 | "mshibanami" 4 | ], 5 | "imageFiles": [ 6 | "cover.webp" 7 | ], 8 | "primaryCategoryId": "search", 9 | "secondaryCategoryId": "privacy_and_security" 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/18_google_search_to_brave_search/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/library/rule-sets/18_google_search_to_brave_search/cover.webp -------------------------------------------------------------------------------- /library/rule-sets/18_google_search_to_brave_search/i18n/bg/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Това пренасочва автоматично от Google Търсене към Brave Search.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Brave Search", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/18_google_search_to_brave_search/i18n/cs/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Toto přesměruje z vyhledávání Google na Brave Search automaticky.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Brave Search", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/18_google_search_to_brave_search/i18n/da/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Dette omdirigerer automatisk fra Google Søgning til Brave Search.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Brave Search", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/18_google_search_to_brave_search/i18n/de/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Dies leitet automatisch von der Google-Suche zu Brave Search um.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Brave Search", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/18_google_search_to_brave_search/i18n/el/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Αυτό ανακατευθύνει αυτόματα από την Αναζήτηση Google στην Αναζήτηση Brave.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Brave Search", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/18_google_search_to_brave_search/i18n/es/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Esto redirige automáticamente de la Búsqueda de Google a Brave Search.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Brave Search", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/18_google_search_to_brave_search/i18n/et/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "See suunab Google otsingust automaatselt Brave Searchi.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Brave Search", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/18_google_search_to_brave_search/i18n/fi/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Tämä ohjaa Google-hausta Brave Searchiin automaattisesti.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Brave Search", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/18_google_search_to_brave_search/i18n/fr/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Ceci redirige automatiquement de la recherche Google vers Brave Search.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Brave Search", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/18_google_search_to_brave_search/i18n/hu/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Ez automatikusan átirányít a Google Keresésről a Brave Search-re.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Brave Search", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/18_google_search_to_brave_search/i18n/id/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Ini mengalihkan dari Google Search ke Brave Search secara otomatis.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Brave Search", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/18_google_search_to_brave_search/i18n/it/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Questo reindirizza automaticamente da Google Search a Brave Search.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Brave Search", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/18_google_search_to_brave_search/i18n/ja/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Google検索からBrave Searchに自動的にリダイレクトします。", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Brave Search", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/18_google_search_to_brave_search/i18n/ko/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "이 규칙은 Google 검색을 Brave Search로 자동으로 리디렉션합니다.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Brave Search", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/18_google_search_to_brave_search/i18n/lt/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Tai automatiškai nukreipia iš „Google“ paieškos į „Brave Search“.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "„Google“ → „Brave Search“", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/18_google_search_to_brave_search/i18n/lv/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Tas automātiski novirza no Google meklēšanas uz Brave Search.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Brave Search", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/18_google_search_to_brave_search/i18n/nl/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Dit leidt automatisch om van Google Zoeken naar Brave Search.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Brave Search", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/18_google_search_to_brave_search/i18n/pl/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "To przekierowuje z wyszukiwarki Google do Brave Search automatycznie.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Brave Search", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/18_google_search_to_brave_search/i18n/pt-br/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Isso redireciona da Pesquisa Google para o Brave Search automaticamente.", 4 | "description": "Os comentários da regra de redirecionamento #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Brave Search", 8 | "description": "O título da regra de redirecionamento #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/18_google_search_to_brave_search/i18n/pt-pt/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Isto redireciona automaticamente da Pesquisa Google para a Pesquisa Brave.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Pesquisa Brave", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/18_google_search_to_brave_search/i18n/ro/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Aceasta redirecționează automat de la Google Search la Brave Search.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google la Brave Search", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/18_google_search_to_brave_search/i18n/ru/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Это автоматически перенаправляет из Google Поиска в Brave Search.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Brave Search", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/18_google_search_to_brave_search/i18n/sk/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Toto automaticky presmeruje z Vyhľadávania Google na Brave Search.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Brave Search", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/18_google_search_to_brave_search/i18n/sl/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "To samodejno preusmeri iz Google Iskanja na Brave Search.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Brave Search", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/18_google_search_to_brave_search/i18n/sv/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Detta omdirigerar automatiskt från Google Sök till Brave Search.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Brave Search", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/18_google_search_to_brave_search/i18n/tr/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Bu, Google Arama'dan Brave Search'e otomatik olarak yönlendirir.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Brave Search", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/18_google_search_to_brave_search/i18n/uk/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Це автоматично перенаправляє з Google Search на Brave Search.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Brave Search", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/18_google_search_to_brave_search/i18n/zh-hans/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "此规则将 Google 搜索自动重定向到 Brave Search。", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google → Brave Search", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/18_google_search_to_brave_search/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "contributorGitHubIds": [ 3 | "mshibanami" 4 | ], 5 | "imageFiles": [ 6 | "cover.webp" 7 | ], 8 | "primaryCategoryId": "search", 9 | "secondaryCategoryId": "privacy_and_security" 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/19_youtube_shorts_to_normal_videos/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/library/rule-sets/19_youtube_shorts_to_normal_videos/cover.webp -------------------------------------------------------------------------------- /library/rule-sets/19_youtube_shorts_to_normal_videos/i18n/cs/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Toto převádí YouTube Shorts na běžná videa, což umožňuje jejich přehrávání na méně návykovém uživatelském rozhraní s plnými ovládacími prvky.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "YouTube: Sledovat krátká videa jako běžná videa", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/19_youtube_shorts_to_normal_videos/i18n/da/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Dette konverterer YouTube Shorts til almindelige videoer, hvilket gør det muligt at afspille dem på en mindre vanedannende brugerflade med fuld kontrol.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "YouTube: Se korte videoer som normale videoer", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/19_youtube_shorts_to_normal_videos/i18n/de/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Dies wandelt YouTube Shorts in normale Videos um, sodass sie auf einer weniger süchtig machenden Benutzeroberfläche mit vollständiger Steuerung abgespielt werden können.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "YouTube: Kurze Videos als normale Videos ansehen", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/19_youtube_shorts_to_normal_videos/i18n/el/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Αυτό μετατρέπει τα YouTube Shorts σε κανονικά βίντεο, επιτρέποντάς τους να αναπαράγονται σε ένα λιγότερο εθιστικό περιβάλλον χρήστη με πλήρη έλεγχο.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "YouTube: Παρακολουθήστε σύντομα βίντεο ως κανονικά βίντεο", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/19_youtube_shorts_to_normal_videos/i18n/es/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Esto convierte los YouTube Shorts en videos normales, permitiendo que se reproduzcan en una interfaz menos adictiva con controles completos.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "YouTube: Ver Videos Cortos como Videos Normales", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/19_youtube_shorts_to_normal_videos/i18n/et/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "See teisendab YouTube'i lühivideod tavalisteks videodeks, võimaldades neid esitada vähem sõltuvust tekitava kasutajaliidesega, millel on täielik kontroll.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "YouTube: Vaata lühivideoid tavaliste videotena", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/19_youtube_shorts_to_normal_videos/i18n/fi/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Tämä muuntaa YouTube Shorts -videot tavallisiksi videoiksi, jolloin niitä voi katsoa vähemmän koukuttavalla käyttöliittymällä täysillä säätimillä.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "YouTube: Katso lyhytvideoita tavallisina videoina", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/19_youtube_shorts_to_normal_videos/i18n/fr/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Ceci convertit les YouTube Shorts en vidéos normales, leur permettant d'être lues sur une interface utilisateur moins addictive avec des contrôles complets.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "YouTube : Regarder les vidéos courtes comme des vidéos normales", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/19_youtube_shorts_to_normal_videos/i18n/hu/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Ez a YouTube Shorts videókat normál videókká alakítja, lehetővé téve, hogy kevésbé addiktív felhasználói felületen, teljes vezérléssel játszhassák le őket.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "YouTube: Rövid videók megtekintése normál videóként", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/19_youtube_shorts_to_normal_videos/i18n/id/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Ini mengubah YouTube Shorts menjadi video biasa, memungkinkan mereka diputar di UI yang kurang adiktif dengan kontrol penuh.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "YouTube: Tonton Video Pendek sebagai Video Normal", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/19_youtube_shorts_to_normal_videos/i18n/it/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Questo converte i cortometraggi di YouTube in video normali, consentendo loro di essere riprodotti su un'interfaccia utente meno coinvolgente con controlli completi.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "YouTube: Guarda i video brevi come video normali", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/19_youtube_shorts_to_normal_videos/i18n/ja/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "このルールは、YouTubeショート動画を通常の動画に変換し、中毒性の低いUIでフルコントロールで再生できるようにします。", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "YouTube: ショート動画を通常の動画として視聴", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/19_youtube_shorts_to_normal_videos/i18n/ko/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "이 규칙은 YouTube Shorts를 일반 동영상으로 변환하여 중독성이 덜한 UI에서 모든 컨트롤을 사용하여 재생할 수 있도록 합니다.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "YouTube: 짧은 동영상을 일반 동영상으로 시청", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/19_youtube_shorts_to_normal_videos/i18n/lv/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Tas pārvērš YouTube īsos videoklipus par parastiem videoklipiem, ļaujot tos atskaņot mazāk atkarību izraisošā lietotāja saskarnē ar pilnām vadības iespējām.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "YouTube: Skatīties īsos videoklipus kā parastus videoklipus", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/19_youtube_shorts_to_normal_videos/i18n/nl/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Dit converteert YouTube Shorts naar reguliere video's, waardoor ze kunnen worden afgespeeld op een minder verslavende gebruikersinterface met volledige bediening.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "YouTube: Korte video's bekijken als normale video's", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/19_youtube_shorts_to_normal_videos/i18n/pl/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "To przekształca krótkie filmy YouTube w zwykłe filmy, umożliwiając ich odtwarzanie w mniej uzależniającym interfejsie użytkownika z pełną kontrolą.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "YouTube: Oglądaj krótkie filmy jako zwykłe filmy", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/19_youtube_shorts_to_normal_videos/i18n/pt-pt/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Isto converte os YouTube Shorts em vídeos normais, permitindo que sejam reproduzidos numa interface menos viciante com controlo total.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "YouTube: Ver Vídeos Curtos como Vídeos Normais", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/19_youtube_shorts_to_normal_videos/i18n/ru/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Это преобразует YouTube Shorts в обычные видео, позволяя воспроизводить их в менее захватывающем пользовательском интерфейсе с полным управлением.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "YouTube: Смотреть короткие видео как обычные видео", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/19_youtube_shorts_to_normal_videos/i18n/sk/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Toto konvertuje YouTube Shorts na bežné videá, čo umožňuje ich prehrávanie na menej návykovom používateľskom rozhraní s plnými ovládacími prvkami.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "YouTube: Sledujte krátke videá ako bežné videá", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/19_youtube_shorts_to_normal_videos/i18n/sl/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "To pretvori YouTube Shorts v običajne videoposnetke, kar omogoča njihovo predvajanje na manj zasvojljivem uporabniškem vmesniku s popolnimi kontrolami.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "YouTube: Glej kratke videoposnetke kot običajne videoposnetke", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/19_youtube_shorts_to_normal_videos/i18n/sv/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Detta konverterar YouTube Shorts till vanliga videor, vilket gör att de kan spelas upp på ett mindre beroendeframkallande gränssnitt med full kontroll.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "YouTube: Titta på korta videor som vanliga videor", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/19_youtube_shorts_to_normal_videos/i18n/tr/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Bu, YouTube Shorts'u normal videolara dönüştürerek, daha az bağımlılık yapan bir kullanıcı arayüzünde tam kontrollerle oynatılmalarını sağlar.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "YouTube: Kısa Videoları Normal Videolar Olarak İzle", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/19_youtube_shorts_to_normal_videos/i18n/uk/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Це перетворює YouTube Shorts на звичайні відео, дозволяючи відтворювати їх у менш захоплюючому інтерфейсі з повним контролем.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "YouTube: Дивитися короткі відео як звичайні відео", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/19_youtube_shorts_to_normal_videos/i18n/zh-hans/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "此规则将 YouTube 短视频转换为普通视频,使其可以在具有完整控制功能的、成瘾性较低的 UI 上播放。", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "YouTube:将短视频作为普通视频观看", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/19_youtube_shorts_to_normal_videos/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "contributorGitHubIds": [ 3 | "mshibanami" 4 | ], 5 | "imageFiles": [ 6 | "cover.webp" 7 | ], 8 | "primaryCategoryId": "arts_and_entertainment", 9 | "secondaryCategoryId": "social_media" 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/1_google-meet-open-in-chrome/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/library/rule-sets/1_google-meet-open-in-chrome/cover.webp -------------------------------------------------------------------------------- /library/rule-sets/1_google-meet-open-in-chrome/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "contributorGitHubIds": [ 3 | "mshibanami" 4 | ], 5 | "imageFiles": [ 6 | "cover.webp" 7 | ], 8 | "aboutUrl": "https://github.com/mshibanami/redirect-web/discussions/1", 9 | "title": "Google Meet: Open in Chrome", 10 | "primaryCategoryId": "productivity", 11 | "secondaryCategoryId": "business" 12 | } 13 | -------------------------------------------------------------------------------- /library/rule-sets/20_fix_open_puppies/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/library/rule-sets/20_fix_open_puppies/cover.webp -------------------------------------------------------------------------------- /library/rule-sets/20_fix_open_puppies/i18n/ja/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "OpenPuppies (https://openpuppies.com/)をご存知ですか?子犬のランダムな短い動画を見ることができるウェブサイトです。しかし、モバイルデバイスでは動画が適切に読み込まれません。このルールはそれを修正し、携帯電話やタブレットでかわいい子犬の動画を楽しむことができます!", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "モバイルデバイス向けOpenPuppiesを修正", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/20_fix_open_puppies/i18n/ko/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "OpenPuppies(https://openpuppies.com/)를 아시나요? 강아지의 무작위 짧은 동영상을 볼 수 있는 웹사이트입니다. 하지만 모바일 기기에서는 동영상이 제대로 로드되지 않습니다. 이 규칙은 이 문제를 해결하여 휴대폰이나 태블릿에서 귀여운 강아지 동영상을 즐길 수 있도록 합니다!", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "모바일 기기용 OpenPuppies 수정", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/20_fix_open_puppies/i18n/zh-hans/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "您知道 OpenPuppies (https://openpuppies.com/) 吗?这是一个可以观看随机小狗短视频的网站。但是,视频在移动设备上无法正常加载。此规则解决了这个问题,因此您可以在手机或平板电脑上欣赏可爱的小狗视频!", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "修复移动设备上的 OpenPuppies", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/20_fix_open_puppies/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "aboutUrl": "https://github.com/heyitsolivia/secretpuppies/issues/90", 3 | "contributorGitHubIds": [ 4 | "mshibanami" 5 | ], 6 | "imageFiles": [ 7 | "cover.webp" 8 | ], 9 | "supportedDeviceTypes": [ 10 | "phone", 11 | "tablet" 12 | ], 13 | "primaryCategoryId": "pets_and_animals", 14 | "secondaryCategoryId": "arts_and_entertainment" 15 | } 16 | -------------------------------------------------------------------------------- /library/rule-sets/21_youtube_open_in_yattee_app/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/library/rule-sets/21_youtube_open_in_yattee_app/cover.webp -------------------------------------------------------------------------------- /library/rule-sets/21_youtube_open_in_yattee_app/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "aboutUrl": "https://github.com/mshibanami/redirect-web/pull/23", 3 | "contributorGitHubIds": [ 4 | "lilaelephant" 5 | ], 6 | "imageFiles": [ 7 | "cover.webp" 8 | ], 9 | "primaryCategoryId": "arts_and_entertainment", 10 | "secondaryCategoryId": "social_media" 11 | } 12 | -------------------------------------------------------------------------------- /library/rule-sets/22_amazon_strip_affiliate_tracking_parameters/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/library/rule-sets/22_amazon_strip_affiliate_tracking_parameters/cover.webp -------------------------------------------------------------------------------- /library/rule-sets/22_amazon_strip_affiliate_tracking_parameters/i18n/ja/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "このルールは、アフィリエイトコードやトラッキングコードを含む、Amazonの商品リンクから不要なパラメータを削除します。\n\nAmazonが自動的に追加する無限ループを防ぐために、`th=1`パラメータを追加します。", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Amazon: アフィリエイトおよびトラッキングパラメータを削除", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/22_amazon_strip_affiliate_tracking_parameters/i18n/ko/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "이 규칙은 제휴 및 추적 코드를 포함하여 Amazon 제품 링크에서 불필요한 매개변수를 제거합니다.\n\nAmazon이 자동으로 추가하는 무한 루프를 방지하기 위해 `th=1` 매개변수를 추가합니다.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Amazon: 제휴 및 추적 매개변수 제거", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/22_amazon_strip_affiliate_tracking_parameters/i18n/zh-hans/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "此规则从亚马逊产品链接中删除不必要的参数,包括联盟和跟踪代码。\n\n它添加了一个 `th=1` 参数,以防止亚马逊自动附加它导致的无限循环。", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "亚马逊:剥离联盟和跟踪参数", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/22_amazon_strip_affiliate_tracking_parameters/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "aboutUrl": "https://github.com/mshibanami/redirect-web/discussions/68", 3 | "contributorGitHubIds": [ 4 | "mshibanami" 5 | ], 6 | "imageFiles": [ 7 | "cover.webp" 8 | ], 9 | "primaryCategoryId": "shopping", 10 | "secondaryCategoryId": "privacy_and_security" 11 | } 12 | -------------------------------------------------------------------------------- /library/rule-sets/23_twitter_to_nitter/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/library/rule-sets/23_twitter_to_nitter/cover.webp -------------------------------------------------------------------------------- /library/rule-sets/23_twitter_to_nitter/i18n/zh-hans/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "这允许您从 X (Twitter) 重定向到 xcancel.com,该网站由 Nitter 提供支持。\n\n**Nitter** 是一个免费的开源替代 Twitter 前端,专注于隐私和性能。\n\nxcancel.com 是最受欢迎的 Nitter 实例之一,但它只是众多实例之一。您可以在此处找到其他实例:\nhttps://status.d420.de\n", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "X (Twitter) → Nitter (xcancel.com)", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/23_twitter_to_nitter/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "contributorGitHubIds": [ 3 | "mshibanami" 4 | ], 5 | "imageFiles": [ 6 | "cover.webp" 7 | ], 8 | "primaryCategoryId": "social_media", 9 | "secondaryCategoryId": "privacy_and_security" 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/24_google_search_to_chatgpt/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/library/rule-sets/24_google_search_to_chatgpt/cover.webp -------------------------------------------------------------------------------- /library/rule-sets/24_google_search_to_chatgpt/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "contributorGitHubIds": [ 3 | "mshibanami" 4 | ], 5 | "imageFiles": [ 6 | "cover.webp" 7 | ], 8 | "primaryCategoryId": "search", 9 | "secondaryCategoryId": "productivity" 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/25_ddg_to_startpage_wile_keeping_bangs_working/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/library/rule-sets/25_ddg_to_startpage_wile_keeping_bangs_working/cover.webp -------------------------------------------------------------------------------- /library/rule-sets/25_ddg_to_startpage_wile_keeping_bangs_working/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "aboutUrl": "https://github.com/mshibanami/redirect-web/discussions/73", 3 | "contributorGitHubIds": [ 4 | "puzzlemoondev" 5 | ], 6 | "imageFiles": [ 7 | "cover.webp" 8 | ], 9 | "primaryCategoryId": "search" 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/26_google_search_to_chatgpt_by_default/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/library/rule-sets/26_google_search_to_chatgpt_by_default/cover.webp -------------------------------------------------------------------------------- /library/rule-sets/26_google_search_to_chatgpt_by_default/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "contributorGitHubIds": [ 3 | "mshibanami" 4 | ], 5 | "imageFiles": [ 6 | "cover.webp" 7 | ], 8 | "primaryCategoryId": "search", 9 | "secondaryCategoryId": "productivity" 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/27_google_search_to_perplexity/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/library/rule-sets/27_google_search_to_perplexity/cover.webp -------------------------------------------------------------------------------- /library/rule-sets/27_google_search_to_perplexity/i18n/zh-hans/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "此规则将Google搜索重定向到**Perplexity**,让您可以使用Perplexity作为默认搜索引擎。\n\n**Perplexity**是一个由AI驱动的搜索和问答引擎,它结合了网页搜索的广度与对话式、上下文感知的响应,帮助您快速高效地找到准确信息。\n\n**Perplexity**:https://www.perplexity.ai", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Google搜索 → Perplexity", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/27_google_search_to_perplexity/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "contributorGitHubIds": [ 3 | "mshibanami" 4 | ], 5 | "imageFiles": [ 6 | "cover.webp" 7 | ], 8 | "primaryCategoryId": "search", 9 | "secondaryCategoryId": "productivity" 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/28_instagram_for_you_to_following/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/library/rule-sets/28_instagram_for_you_to_following/cover.webp -------------------------------------------------------------------------------- /library/rule-sets/28_instagram_for_you_to_following/i18n/bg/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Това правило винаги пренасочва от началната страница по подразбиране на Instagram „За теб“ към емисията „Следвани“, където показва само публикациите на акаунтите, които следвате.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Instagram: За теб → Следвани", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/28_instagram_for_you_to_following/i18n/cs/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Toto pravidlo vždy přesměruje z výchozí domovské stránky Instagramu „Pro vás“ na kanál „Sledování“, kde se zobrazují pouze příspěvky účtů, které sledujete.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Instagram: Pro vás → Sledování", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/28_instagram_for_you_to_following/i18n/da/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Denne regel omdirigerer altid fra Instagrams standard startside \"For dig\" til \"F\u00f8lger\"-feedet, hvor den kun viser opslag fra de konti, du fˆlger.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Instagram: For dig → Fˆlger", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/28_instagram_for_you_to_following/i18n/de/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Diese Regel leitet immer von der Instagram-Standardstartseite „Für dich“ zum „Folge ich“-Feed um, wo nur die Beiträge der Konten angezeigt werden, denen Sie folgen.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Instagram: Für dich → Folge ich", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/28_instagram_for_you_to_following/i18n/es/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Esta regla siempre redirige desde la página de inicio predeterminada de Instagram \"Para ti\" al feed de \"Siguiendo\", donde solo muestra las publicaciones de las cuentas que sigues.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Instagram: Para ti → Siguiendo", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/28_instagram_for_you_to_following/i18n/et/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "See reegel suunab Instagrami vaikimisi avalehelt \"Sulle\" alati \"Jälgitavad\" voogu, kus kuvatakse ainult nende kontode postitused, mida te jälgite.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Instagram: Sulle → Jälgitavad", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/28_instagram_for_you_to_following/i18n/fi/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Tämä sääntö ohjaa aina Instagramin oletuskotisivulta \"Sinulle\"-syötteestä \"Seuraamasi\"-syötteeseen, jossa näkyvät vain seuraamiesi tilien julkaisut.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Instagram: Sinulle → Seuraamasi", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/28_instagram_for_you_to_following/i18n/fr/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Cette règle redirige toujours de la page d'accueil par défaut d'Instagram \"Pour vous\" vers le fil \"Abonnements\" où elle n'affiche que les publications des comptes que vous suivez.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Instagram : Pour vous → Abonnements", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/28_instagram_for_you_to_following/i18n/hu/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Ez a szabály mindig átirányít az Instagram alapértelmezett kezdőlapjáról (Neked) a Követett hírfolyamra, ahol csak az Ön által követett fiókok bejegyzéseit mutatja.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Instagram: Neked → Követett", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/28_instagram_for_you_to_following/i18n/id/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Aturan ini selalu mengalihkan dari halaman beranda default Instagram \"Untuk Anda\" ke umpan \"Mengikuti\" di mana hanya menampilkan postingan dari akun yang Anda ikuti.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Instagram: Untuk Anda → Mengikuti", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | 12 | -------------------------------------------------------------------------------- /library/rule-sets/28_instagram_for_you_to_following/i18n/it/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Questa regola reindirizza sempre dalla home page predefinita di Instagram \"Per te\" al feed \"Seguiti\" dove mostra solo i post degli account che segui.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Instagram: Per te → Seguiti", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/28_instagram_for_you_to_following/i18n/ja/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "このルールは、Instagramのデフォルトのホームページ「おすすめ」から、フォローしているアカウントの投稿のみが表示される「フォロー中」フィードに常にリダイレクトします。", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Instagram: おすすめ → フォロー中", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/28_instagram_for_you_to_following/i18n/ko/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "이 규칙은 Instagram 기본 홈 페이지 \"추천\"에서 \"팔로잉\" 피드로 항상 리디렉션하여 팔로우하는 계정의 게시물만 표시합니다.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Instagram: 추천 → 팔로잉", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/28_instagram_for_you_to_following/i18n/lt/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Ši taisyklė visada nukreipia iš numatytojo „Instagram“ pagrindinio puslapio „Jums“ į „Sekamų“ kanalą, kuriame rodomi tik jūsų sekamų paskyrų įrašai.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "„Instagram“: Jums → Sekami", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/28_instagram_for_you_to_following/i18n/lv/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Šis noteikums vienmēr novirza no Instagram noklusējuma sākumlapas \"Jums\" uz \"Sekojošie\" plūsmu, kurā tiek rādītas tikai to kontu ziņas, kuriem sekojat.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Instagram: Jums → Sekojošie", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/28_instagram_for_you_to_following/i18n/nl/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Deze regel leidt altijd om van de standaard Instagram-startpagina \"Voor jou\" naar de \"Volgend\"-feed, waar alleen de berichten van de accounts die je volgt worden getoond.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Instagram: Voor jou → Volgend", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/28_instagram_for_you_to_following/i18n/pl/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Ta reguła zawsze przekierowuje z domyślnej strony głównej Instagrama „Dla Ciebie” do kanału „Obserwowani”, gdzie wyświetla tylko posty kont, które obserwujesz.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Instagram: Dla Ciebie → Obserwowani", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/28_instagram_for_you_to_following/i18n/pt-pt/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Esta regra redireciona sempre da página inicial padrão do Instagram \"Para Você\" para o feed \"Seguindo\", onde mostra apenas as publicações das contas que você segue.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Instagram: Para Você → Seguindo", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/28_instagram_for_you_to_following/i18n/ru/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Это правило всегда перенаправляет со стандартной домашней страницы Instagram «Для вас» на ленту «Подписки», где отображаются только публикации аккаунтов, на которые вы подписаны.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Instagram: Для вас → Подписки", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/28_instagram_for_you_to_following/i18n/sk/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Toto pravidlo vždy presmeruje z predvolenej domovskej stránky Instagramu „Pre vás“ na kanál „Sledované“, kde sa zobrazujú iba príspevky účtov, ktoré sledujete.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Instagram: Pre vás → Sledované", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/28_instagram_for_you_to_following/i18n/sl/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "To pravilo vedno preusmeri z Instagramove privzete domače strani \"Za vas\" na vir \"Spremljanje\", kjer prikazuje samo objave računov, ki jih spremljate.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Instagram: Za vas → Spremljanje", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/28_instagram_for_you_to_following/i18n/sv/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Denna regel omdirigerar alltid från Instagrams standardhemsida \"För dig\" till flödet \"Följer\" där den endast visar inlägg från de konton du följer.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Instagram: För dig → Följer", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/28_instagram_for_you_to_following/i18n/tr/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Bu kural, Instagram varsayılan ana sayfası \"Sizin İçin\"den, yalnızca takip ettiğiniz hesapların gönderilerini gösteren \"Takip Edilenler\" akışına her zaman yönlendirir.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Instagram: Sizin İçin → Takip Edilenler", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/28_instagram_for_you_to_following/i18n/uk/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Це правило завжди перенаправляє з домашньої сторінки Instagram за замовчуванням «Для вас» на стрічку «Підписки», де відображаються лише публікації облікових записів, на які ви підписані.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Instagram: Для вас → Підписки", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/28_instagram_for_you_to_following/i18n/zh-hans/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "此规则始终将Instagram默认主页“为你推荐”重定向到“关注中”动态,其中只显示您关注的帐户的帖子。", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Instagram:为你推荐 → 关注中", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/28_instagram_for_you_to_following/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "aboutUrl": "https://github.com/mshibanami/redirect-web/discussions/71", 3 | "contributorGitHubIds": [ 4 | "hub-mol" 5 | ], 6 | "imageFiles": [ 7 | "cover.webp" 8 | ], 9 | "primaryCategoryId": "social_media", 10 | "secondaryCategoryId": "arts_and_entertainment" 11 | } 12 | -------------------------------------------------------------------------------- /library/rule-sets/29_HIDDEN_tiktok_to_offtiktok/README.md: -------------------------------------------------------------------------------- 1 | # TikTok → Offtiktok 2 | 3 | * [2025/07/02] This rule is now hidden from the Library because Offtiktok doesn't seem to work correctly. Please check the details here: 4 | 5 | https://github.com/mshibanami/redirect-web/discussions/76 6 | -------------------------------------------------------------------------------- /library/rule-sets/29_HIDDEN_tiktok_to_offtiktok/_cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/library/rule-sets/29_HIDDEN_tiktok_to_offtiktok/_cover.webp -------------------------------------------------------------------------------- /library/rule-sets/29_HIDDEN_tiktok_to_offtiktok/_metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "aboutUrl": "https://github.com/mshibanami/redirect-web/discussions/76", 3 | "contributorGitHubIds": [ 4 | "hmlendea" 5 | ], 6 | "imageFiles": [ 7 | "cover.webp" 8 | ], 9 | "primaryCategoryId": "social_media", 10 | "secondaryCategoryId": "arts_and_entertainment" 11 | } 12 | -------------------------------------------------------------------------------- /library/rule-sets/2_notion-open-in-notion-app/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/library/rule-sets/2_notion-open-in-notion-app/cover.webp -------------------------------------------------------------------------------- /library/rule-sets/2_notion-open-in-notion-app/i18n/bg/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Notion ви позволява да отворите приложението Notion, като промените схемата на URL адреса на страницата на Notion от https на notion. Това правило автоматизира този процес.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Notion: Отваряне в приложението Notion", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/2_notion-open-in-notion-app/i18n/cs/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Notion umožňuje otevřít aplikaci Notion změnou schématu URL adresy stránky Notion z https na notion. Toto pravidlo tento proces automatizuje.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Notion: Otevřít v aplikaci Notion", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/2_notion-open-in-notion-app/i18n/da/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Notion giver dig mulighed for at åbne Notion-appen ved at ændre skemaet for Notion-side-URL'en fra https til notion. Denne regel automatiserer den proces.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Notion: Åbn i Notion-app", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/2_notion-open-in-notion-app/i18n/de/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Notion ermöglicht es Ihnen, die Notion-App zu öffnen, indem das Schema der Notion-Seiten-URL von https zu notion geändert wird. Diese Regel automatisiert diesen Prozess.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Notion: In Notion App öffnen", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/2_notion-open-in-notion-app/i18n/el/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Το Notion σάς επιτρέπει να ανοίξετε την εφαρμογή Notion αλλάζοντας το σχήμα της διεύθυνσης URL της σελίδας Notion από https σε notion. Αυτός ο κανόνας αυτοματοποιεί αυτήν τη διαδικασία.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Notion: Άνοιγμα στην εφαρμογή Notion", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/2_notion-open-in-notion-app/i18n/es/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Notion te permite abrir la aplicación de Notion cambiando el esquema de la URL de la página de Notion de https a notion. Esta regla automatiza ese proceso.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Notion: Abrir en la aplicación de Notion", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/2_notion-open-in-notion-app/i18n/et/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Notion võimaldab teil avada Notioni rakenduse, muutes Notioni lehe URL-i skeemi https-ist notion-iks. See reegel automatiseerib selle protsessi.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Notion: Ava Notioni rakenduses", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/2_notion-open-in-notion-app/i18n/fi/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Notion antaa sinun avata Notion-sovelluksen muuttamalla Notion-sivun URL-osoitteen skeeman https:stä notioniin. Tämä sääntö automatisoi prosessin.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Notion: Avaa Notion-sovelluksessa", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/2_notion-open-in-notion-app/i18n/fr/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Notion vous permet d'ouvrir l'application Notion en changeant le schéma de l'URL de la page Notion de https à notion. Cette règle automatise ce processus.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Notion : Ouvrir dans l'application Notion", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/2_notion-open-in-notion-app/i18n/hu/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "A Notion lehetővé teszi a Notion alkalmazás megnyitását a Notion oldal URL-jének sémájának https-ről notion-re történő megváltoztatásával. Ez a szabály automatizálja ezt a folyamatot.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Notion: Megnyitás a Notion alkalmazásban", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/2_notion-open-in-notion-app/i18n/id/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Notion memungkinkan Anda membuka aplikasi Notion dengan mengubah skema URL halaman Notion dari https menjadi notion. Aturan ini mengotomatiskan proses tersebut.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Notion: Buka di Aplikasi Notion", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/2_notion-open-in-notion-app/i18n/it/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Notion ti consente di aprire l'app Notion modificando lo schema dell'URL della pagina Notion da https a notion. Questa regola automatizza questo processo.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Notion: Apri nell'app Notion", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/2_notion-open-in-notion-app/i18n/ja/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Notionでは、NotionページのURLスキームをhttpsからnotionに変更することで、Notionアプリを開くことができます。このルールはそのプロセスを自動化します。", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Notion: Notionアプリで開く", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/2_notion-open-in-notion-app/i18n/ko/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Notion은 Notion 페이지 URL의 스키마를 https에서 notion으로 변경하여 Notion 앱을 열 수 있도록 합니다. 이 규칙은 해당 프로세스를 자동화합니다.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Notion: Notion 앱에서 열기", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/2_notion-open-in-notion-app/i18n/lt/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "„Notion“ leidžia atidaryti „Notion“ programą, pakeičiant „Notion“ puslapio URL schemą iš https į notion. Ši taisyklė automatizuoja šį procesą.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "„Notion“: atidaryti „Notion“ programoje", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/2_notion-open-in-notion-app/i18n/lv/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Notion ļauj atvērt Notion lietotni, mainot Notion lapas URL shēmu no https uz notion. Šis noteikums automatizē šo procesu.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Notion: Atvērt Notion lietotnē", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/2_notion-open-in-notion-app/i18n/nl/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Notion stelt je in staat om de Notion-app te openen door het schema van de Notion-pagina-URL te wijzigen van https naar notion. Deze regel automatiseert dat proces.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Notion: Openen in Notion-app", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/2_notion-open-in-notion-app/i18n/pl/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Notion umożliwia otwarcie aplikacji Notion poprzez zmianę schematu adresu URL strony Notion z https na notion. Ta reguła automatyzuje ten proces.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Notion: Otwórz w aplikacji Notion", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/2_notion-open-in-notion-app/i18n/pt-br/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "O Notion permite que você abra o aplicativo Notion alterando o esquema do URL da página do Notion de https para notion. Esta regra automatiza esse processo.", 4 | "description": "Os comentários da regra de redirecionamento #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Notion: Abrir no Aplicativo Notion", 8 | "description": "O título da regra de redirecionamento #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/2_notion-open-in-notion-app/i18n/pt-pt/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "O Notion permite-lhe abrir a aplicação Notion alterando o esquema do URL da página Notion de https para notion. Esta regra automatiza esse processo.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Notion: Abrir na Aplicação Notion", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/2_notion-open-in-notion-app/i18n/ro/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Notion vă permite să deschideți aplicația Notion schimbând schema URL-ului paginii Notion de la https la notion. Această regulă automatizează acest proces.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Notion: Deschide în aplicația Notion", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/2_notion-open-in-notion-app/i18n/ru/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Notion позволяет открывать приложение Notion, изменяя схему URL-адреса страницы Notion с https на notion. Это правило автоматизирует этот процесс.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Notion: Открыть в приложении Notion", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/2_notion-open-in-notion-app/i18n/sk/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Notion vám umožňuje otvoriť aplikáciu Notion zmenou schémy URL adresy stránky Notion z https na notion. Toto pravidlo automatizuje tento proces.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Notion: Otvoriť v aplikácii Notion", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/2_notion-open-in-notion-app/i18n/sl/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Notion vam omogoča odpiranje aplikacije Notion s spremembo sheme URL-ja strani Notion iz https v notion. To pravilo avtomatizira ta postopek.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Notion: Odpri v aplikaciji Notion", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/2_notion-open-in-notion-app/i18n/sv/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Notion låter dig öppna Notion-appen genom att ändra schemat för Notion-sidans URL från https till notion. Denna regel automatiserar den processen.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Notion: Öppna i Notion-appen", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/2_notion-open-in-notion-app/i18n/tr/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Notion, Notion sayfa URL'sinin şemasını https'den notion'a değiştirerek Notion uygulamasını açmanıza olanak tanır. Bu kural bu süreci otomatikleştirir.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Notion: Notion Uygulamasında Aç", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/2_notion-open-in-notion-app/i18n/uk/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Notion дозволяє відкривати додаток Notion, змінюючи схему URL-адреси сторінки Notion з https на notion. Це правило автоматизує цей процес.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Notion: Відкрити в додатку Notion", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/2_notion-open-in-notion-app/i18n/zh-hans/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Notion 允许您通过将 Notion 页面 URL 的方案从 https 更改为 notion 来打开 Notion 应用程序。此规则可自动执行该过程。", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Notion:在 Notion 应用中打开", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/2_notion-open-in-notion-app/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "aboutUrl": "https://github.com/mshibanami/redirect-web/discussions/2", 3 | "contributorGitHubIds": [ 4 | "mshibanami" 5 | ], 6 | "imageFiles": [ 7 | "cover.webp" 8 | ], 9 | "primaryCategoryId": "productivity" 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/30_instagram_to_imginn/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/library/rule-sets/30_instagram_to_imginn/cover.webp -------------------------------------------------------------------------------- /library/rule-sets/30_instagram_to_imginn/i18n/hu/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Using this rule, when you open Instagram posts and reels, you are redirected to imginn.com.\n\nImginn is an online instagram backup tool that helps users save instagram photos through the Instagram public API.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Instagram → Imginn", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/30_instagram_to_imginn/i18n/ja/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "このルールを使用すると、Instagramの投稿やリールを開いたときにimginn.comにリダイレクトされます。\n\nImginnは、Instagramの公開APIを通じてユーザーがInstagramの写真を保存するのに役立つオンラインInstagramバックアップツールです。", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Instagram → Imginn", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/30_instagram_to_imginn/i18n/ko/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "이 규칙을 사용하면 Instagram 게시물과 릴을 열 때 imginn.com으로 리디렉션됩니다.\n\nImginn은 Instagram 공개 API를 통해 사용자가 Instagram 사진을 저장할 수 있도록 돕는 온라인 Instagram 백업 도구입니다.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "인스타그램 → Imginn", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/30_instagram_to_imginn/i18n/zh-hans/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "使用此规则,当您打开Instagram帖子和短视频时,您将被重定向到imginn.com。\n\nImginn是一个在线Instagram备份工具,通过Instagram公共API帮助用户保存Instagram照片。", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Instagram → Imginn", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/30_instagram_to_imginn/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "contributorGitHubIds": [ 3 | "rizzodg", 4 | "L041S", 5 | "covercash" 6 | ], 7 | "imageFiles": [ 8 | "cover.webp" 9 | ], 10 | "primaryCategoryId": "social_media", 11 | "secondaryCategoryId": "privacy_and_security" 12 | } 13 | -------------------------------------------------------------------------------- /library/rule-sets/31_open_youtube_in_duckduckgo_ios/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/library/rule-sets/31_open_youtube_in_duckduckgo_ios/cover.webp -------------------------------------------------------------------------------- /library/rule-sets/31_open_youtube_in_duckduckgo_ios/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "aboutUrl": "https://github.com/mshibanami/redirect-web/discussions/83", 3 | "contributorGitHubIds": [ 4 | "yyzguy" 5 | ], 6 | "imageFiles": [ 7 | "cover.webp" 8 | ], 9 | "primaryCategoryId": "arts_and_entertainment", 10 | "secondaryCategoryId": "privacy_and_security", 11 | "supportedDeviceTypes": [ 12 | "phone", 13 | "tablet" 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /library/rule-sets/32_open_youtube_in_duckduckgo_mac/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/library/rule-sets/32_open_youtube_in_duckduckgo_mac/cover.webp -------------------------------------------------------------------------------- /library/rule-sets/32_open_youtube_in_duckduckgo_mac/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "aboutUrl": "https://github.com/mshibanami/redirect-web/discussions/83", 3 | "contributorGitHubIds": [ 4 | "yyzguy" 5 | ], 6 | "imageFiles": [ 7 | "cover.webp" 8 | ], 9 | "primaryCategoryId": "arts_and_entertainment", 10 | "secondaryCategoryId": "privacy_and_security", 11 | "supportedDeviceTypes": [ 12 | "desktop" 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /library/rule-sets/33_xkcd_to_explain_xkcd/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/library/rule-sets/33_xkcd_to_explain_xkcd/cover.webp -------------------------------------------------------------------------------- /library/rule-sets/33_xkcd_to_explain_xkcd/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "aboutUrl": "https://github.com/mshibanami/redirect-web/discussions/85", 3 | "contributorGitHubIds": [ 4 | "yyzguy" 5 | ], 6 | "imageFiles": [ 7 | "cover.webp" 8 | ], 9 | "primaryCategoryId": "arts_and_entertainment", 10 | "secondaryCategoryId": "science_and_education" 11 | } 12 | -------------------------------------------------------------------------------- /library/rule-sets/34_google_maps_to_apple_maps_deeplink/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/library/rule-sets/34_google_maps_to_apple_maps_deeplink/cover.webp -------------------------------------------------------------------------------- /library/rule-sets/35_google_maps_to_apple_maps_open/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/library/rule-sets/35_google_maps_to_apple_maps_open/cover.webp -------------------------------------------------------------------------------- /library/rule-sets/36_miro-open-in-miro-app/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/library/rule-sets/36_miro-open-in-miro-app/cover.webp -------------------------------------------------------------------------------- /library/rule-sets/36_miro-open-in-miro-app/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "contributorGitHubIds": [ 3 | "mshibanami" 4 | ], 5 | "imageFiles": [ 6 | "cover.webp" 7 | ], 8 | "primaryCategoryId": "productivity", 9 | "secondaryCategoryId": "business", 10 | "supportedDeviceTypes": [ 11 | "desktop" 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /library/rule-sets/37_hacker-news-open-in-octal/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/library/rule-sets/37_hacker-news-open-in-octal/cover.jpg -------------------------------------------------------------------------------- /library/rule-sets/37_hacker-news-open-in-octal/i18n/ja/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "これは、Hacker NewsのリンクをOctalで直接開きます。Octalは、デザイン、速度、使いやすさに焦点を当てて構築された、モダンで広告なし、トラッキングなしのフル機能のHacker Newsリーダーです。\n\n**⬇️ App StoreからOctalをダウンロード:**\nhttps://apps.apple.com/app/id1308885491", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Hacker NewsをOctalで開く", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/37_hacker-news-open-in-octal/i18n/ko/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "이것은 디자인, 속도 및 유용성에 중점을 두고 구축된 현대적이고 광고 없는, 추적 없는, 모든 기능을 갖춘 Hacker News 리더인 Octal에서 Hacker News 링크를 직접 엽니다.\n\n**⬇️ App Store에서 Octal 다운로드:**\nhttps://apps.apple.com/app/id1308885491", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Octal에서 Hacker News 열기", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/37_hacker-news-open-in-octal/i18n/zh-hans/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "此规则直接在Octal中打开Hacker News链接,Octal是一款现代、无广告、无跟踪、功能齐全的Hacker News阅读器,专注于设计、速度和可用性。\n\n**⬇️ 从App Store下载Octal:**\nhttps://apps.apple.com/app/id1308885491", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "在Octal中打开Hacker News", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/37_hacker-news-open-in-octal/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "aboutUrl": "https://github.com/mshibanami/redirect-web/discussions/86", 3 | "contributorGitHubIds": [ 4 | "chrisgrieser" 5 | ], 6 | "imageFiles": [ 7 | "cover.jpg" 8 | ], 9 | "primaryCategoryId": "productivity", 10 | "secondaryCategoryId": "social_media", 11 | "supportedDeviceTypes": [ 12 | "phone", 13 | "tablet" 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /library/rule-sets/38_youtube-open-in-unwatched/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/library/rule-sets/38_youtube-open-in-unwatched/cover.jpg -------------------------------------------------------------------------------- /library/rule-sets/38_youtube-open-in-unwatched/i18n/ja/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "このルールは、YouTube動画をUnwatchedで開きます。\n\n**Unwatched**は、購読をインボックスとキューに整理し、選択した動画のみを視聴できるようにする広告なしのYouTubeプレーヤーです。\n\n**⬇️ App StoreからUnwatchedをダウンロード:**\nhttps://apps.apple.com/app/id6477287463", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "YouTube動画をUnwatchedで開く", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/38_youtube-open-in-unwatched/i18n/zh-hans/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "此规则在Unwatched中打开YouTube视频。\n\n**Unwatched**是一个无广告的YouTube播放器,它将您的订阅组织成收件箱和队列,因此您只观看您选择的内容。\n\n**⬇️ 从App Store下载Unwatched:**\nhttps://apps.apple.com/app/id6477287463", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "在Unwatched中打开YouTube视频", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/38_youtube-open-in-unwatched/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "aboutUrl": "https://github.com/mshibanami/redirect-web/discussions/89", 3 | "contributorGitHubIds": [ 4 | "plumkewe" 5 | ], 6 | "imageFiles": [ 7 | "cover.jpg" 8 | ], 9 | "primaryCategoryId": "arts_and_entertainment", 10 | "secondaryCategoryId": "social_media", 11 | "supportedDeviceTypes": [ 12 | "phone", 13 | "tablet" 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /library/rule-sets/39_grokipedia-to-wikipedia/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/library/rule-sets/39_grokipedia-to-wikipedia/cover.jpg -------------------------------------------------------------------------------- /library/rule-sets/39_grokipedia-to-wikipedia/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "contributorGitHubIds": [ 3 | "mshibanami" 4 | ], 5 | "imageFiles": [ 6 | "cover.jpg" 7 | ], 8 | "primaryCategoryId": "reference", 9 | "secondaryCategoryId": "privacy_and_security" 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/3_wikipedia-open-in-wikiwand/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/library/rule-sets/3_wikipedia-open-in-wikiwand/cover.webp -------------------------------------------------------------------------------- /library/rule-sets/3_wikipedia-open-in-wikiwand/i18n/bg/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "С това правило можете автоматично да отваряте страници от Wikipedia в Wikiwand.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Wikipedia: Отваряне в Wikiwand", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/3_wikipedia-open-in-wikiwand/i18n/cs/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Pomocí tohoto pravidla můžete automaticky otevírat stránky Wikipedie ve Wikiwandu.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Wikipedie: Otevřít ve Wikiwandu", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/3_wikipedia-open-in-wikiwand/i18n/da/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Med denne regel kan du automatisk åbne Wikipedia-sider i Wikiwand.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Wikipedia: Åbn i Wikiwand", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/3_wikipedia-open-in-wikiwand/i18n/de/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Mit dieser Regel können Sie Wikipedia-Seiten automatisch in Wikiwand öffnen.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Wikipedia: In Wikiwand öffnen", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/3_wikipedia-open-in-wikiwand/i18n/el/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Με αυτόν τον κανόνα, μπορείτε να ανοίξετε σελίδες της Wikipedia στο Wikiwand αυτόματα.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Wikipedia: Άνοιγμα στο Wikiwand", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/3_wikipedia-open-in-wikiwand/i18n/es/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Con esta regla, puedes abrir páginas de Wikipedia en Wikiwand automáticamente.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Wikipedia: Abrir en Wikiwand", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/3_wikipedia-open-in-wikiwand/i18n/et/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Selle reegliga saate Wikipedia lehti automaatselt Wikiwandis avada.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Wikipedia: Ava Wikiwandis", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/3_wikipedia-open-in-wikiwand/i18n/fi/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Tämän säännön avulla voit avata Wikipedia-sivuja Wikiwandissa automaattisesti.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Wikipedia: Avaa Wikiwandissa", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/3_wikipedia-open-in-wikiwand/i18n/fr/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Avec cette règle, vous pouvez ouvrir automatiquement les pages Wikipédia dans Wikiwand.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Wikipédia : Ouvrir dans Wikiwand", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/3_wikipedia-open-in-wikiwand/i18n/hu/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Ezzel a szabállyal automatikusan megnyithatja a Wikipédia oldalakat a Wikiwand-ban.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Wikipédia: Megnyitás Wikiwand-ban", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/3_wikipedia-open-in-wikiwand/i18n/id/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Dengan aturan ini, Anda dapat membuka halaman Wikipedia di Wikiwand secara otomatis.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Wikipedia: Buka di Wikiwand", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/3_wikipedia-open-in-wikiwand/i18n/it/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Con questa regola, puoi aprire automaticamente le pagine di Wikipedia in Wikiwand.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Wikipedia: Apri in Wikiwand", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/3_wikipedia-open-in-wikiwand/i18n/ja/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "このルールを使用すると、WikipediaのページをWikiwandで自動的に開くことができます。", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Wikipedia: Wikiwandで開く", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/3_wikipedia-open-in-wikiwand/i18n/ko/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "이 규칙을 사용하면 위키백과 페이지를 위키완드에서 자동으로 열 수 있습니다.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "위키백과: 위키완드에서 열기", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/3_wikipedia-open-in-wikiwand/i18n/lt/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Naudodami šią taisyklę, galite automatiškai atidaryti „Wikipedia“ puslapius „Wikiwand“.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "„Wikipedia“: atidaryti „Wikiwand“", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/3_wikipedia-open-in-wikiwand/i18n/lv/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Ar šo noteikumu jūs varat automātiski atvērt Wikipedia lapas Wikiwand.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Wikipedia: Atvērt Wikiwand", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/3_wikipedia-open-in-wikiwand/i18n/nl/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Met deze regel kun je Wikipedia-pagina's automatisch openen in Wikiwand.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Wikipedia: Openen in Wikiwand", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/3_wikipedia-open-in-wikiwand/i18n/pl/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Dzięki tej regule możesz automatycznie otwierać strony Wikipedii w Wikiwand.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Wikipedia: Otwórz w Wikiwand", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/3_wikipedia-open-in-wikiwand/i18n/pt-br/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Com esta regra, você pode abrir páginas da Wikipedia no Wikiwand automaticamente.", 4 | "description": "Os comentários da regra de redirecionamento #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Wikipedia: Abrir no Wikiwand", 8 | "description": "O título da regra de redirecionamento #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/3_wikipedia-open-in-wikiwand/i18n/pt-pt/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Com esta regra, pode abrir páginas da Wikipédia no Wikiwand automaticamente.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Wikipédia: Abrir no Wikiwand", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/3_wikipedia-open-in-wikiwand/i18n/ro/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Cu această regulă, puteți deschide automat paginile Wikipedia în Wikiwand.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Wikipedia: Deschide în Wikiwand", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/3_wikipedia-open-in-wikiwand/i18n/ru/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "С помощью этого правила вы можете автоматически открывать страницы Википедии в Wikiwand.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Википедия: Открыть в Wikiwand", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/3_wikipedia-open-in-wikiwand/i18n/sk/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Pomocou tohto pravidla môžete automaticky otvárať stránky Wikipédie vo Wikiwand.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Wikipedia: Otvoriť vo Wikiwand", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/3_wikipedia-open-in-wikiwand/i18n/sl/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "S tem pravilom lahko samodejno odprete strani Wikipedije v Wikiwandu.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Wikipedia: Odpri v Wikiwandu", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/3_wikipedia-open-in-wikiwand/i18n/sv/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Med denna regel kan du automatiskt öppna Wikipedia-sidor i Wikiwand.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Wikipedia: Öppna i Wikiwand", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/3_wikipedia-open-in-wikiwand/i18n/tr/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "Bu kural ile Wikipedia sayfalarını otomatik olarak Wikiwand'da açabilirsiniz.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Wikipedia: Wikiwand'da Aç", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } -------------------------------------------------------------------------------- /library/rule-sets/3_wikipedia-open-in-wikiwand/i18n/uk/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "За допомогою цього правила ви можете автоматично відкривати сторінки Вікіпедії у Wikiwand.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Вікіпедія: Відкрити у Wikiwand", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/3_wikipedia-open-in-wikiwand/i18n/zh-hans/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "使用此规则,您可以自动在Wikiwand中打开维基百科页面。", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "维基百科:在Wikiwand中打开", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/3_wikipedia-open-in-wikiwand/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "aboutUrl": "https://github.com/mshibanami/redirect-web/discussions/5", 3 | "imageFiles": [ 4 | "cover.webp" 5 | ], 6 | "contributorGitHubIds": [ 7 | "mshibanami" 8 | ], 9 | "primaryCategoryId": "reference" 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/4_github-hide-whitespace-changes-in-pull-request/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/library/rule-sets/4_github-hide-whitespace-changes-in-pull-request/cover.webp -------------------------------------------------------------------------------- /library/rule-sets/4_github-hide-whitespace-changes-in-pull-request/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "aboutUrl": "https://github.com/mshibanami/redirect-web/discussions/3", 3 | "contributorGitHubIds": [ 4 | "mshibanami" 5 | ], 6 | "imageFiles": [ 7 | "cover.webp" 8 | ], 9 | "title": "GitHub: Ignore Whitespace Changes in a Pull Request", 10 | "description": "This hides whitespace changes in a pull request on GitHub automatically.", 11 | "primaryCategoryId": "software_development" 12 | } 13 | -------------------------------------------------------------------------------- /library/rule-sets/5_figma-open-in-figma-app/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/library/rule-sets/5_figma-open-in-figma-app/cover.webp -------------------------------------------------------------------------------- /library/rule-sets/5_figma-open-in-figma-app/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "aboutUrl": "https://github.com/mshibanami/redirect-web/discussions/6", 3 | "contributorGitHubIds": [ 4 | "mshibanami" 5 | ], 6 | "imageFiles": [ 7 | "cover.webp" 8 | ], 9 | "title": "Figma: Open in Figma App", 10 | "description": "Open Figma links in the Figma app automatically.", 11 | "primaryCategoryId": "arts_and_entertainment" 12 | } 13 | -------------------------------------------------------------------------------- /library/rule-sets/6_google-search-to-youtube/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/library/rule-sets/6_google-search-to-youtube/cover.webp -------------------------------------------------------------------------------- /library/rule-sets/6_google-search-to-youtube/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "aboutURL": "https://github.com/mshibanami/redirect-web/discussions/8", 3 | "contributorGitHubIds": [ 4 | "mshibanami" 5 | ], 6 | "imageFiles": [ 7 | "cover.webp" 8 | ], 9 | "title": "Google Search: From Video Tab to YouTube's Search Results", 10 | "description": "This redirects from the Videos tab on Google Search to the search results on YouTube automatically.", 11 | "primaryCategoryId": "search" 12 | } 13 | -------------------------------------------------------------------------------- /library/rule-sets/7_minecraft-fandom-wiki-to-mincraft-wiki/cover.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/library/rule-sets/7_minecraft-fandom-wiki-to-mincraft-wiki/cover.webp -------------------------------------------------------------------------------- /library/rule-sets/7_minecraft-fandom-wiki-to-mincraft-wiki/i18n/ja/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "このルールを有効にすると、FandomでMinecraft Wikiにアクセスしようとするユーザーは、自動的にminecraft.wikiの新しいドメインにリダイレクトされ、公式のWikiソースから最新かつ最も正確な情報を受け取ることができます。", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Minecraft Wiki: Fandomからminecraft.wikiへ", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/7_minecraft-fandom-wiki-to-mincraft-wiki/i18n/ko/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "이 규칙을 활성화하면 Fandom에서 Minecraft Wiki에 접속하려는 사용자는 자동으로 minecraft.wiki의 새 도메인으로 리디렉션되어 공식 위키 소스에서 최신 및 가장 정확한 정보를 받을 수 있습니다.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "마인크래프트 위키: Fandom에서 minecraft.wiki로", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/7_minecraft-fandom-wiki-to-mincraft-wiki/i18n/zh-hans/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "启用此规则后,尝试访问Fandom上Minecraft维基的用户将自动重定向到minecraft.wiki上的新域名,确保他们从官方维基来源获取最新、最准确的信息。", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Minecraft维基:从Fandom到minecraft.wiki", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/7_minecraft-fandom-wiki-to-mincraft-wiki/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "contributorGitHubIds": [ 3 | "mshibanami" 4 | ], 5 | "imageFiles": [ 6 | "cover.webp" 7 | ], 8 | "primaryCategoryId": "gaming" 9 | } 10 | -------------------------------------------------------------------------------- /library/rule-sets/8_DELETED/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/library/rule-sets/8_DELETED/.gitkeep -------------------------------------------------------------------------------- /library/rule-sets/9_terraria-fandom-wiki-to-wiki-gg/i18n/ja/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "このルールを有効にすると、FandomでTerraria Wikiにアクセスしようとするユーザーは、自動的にwiki.ggの新しいドメインにリダイレクトされ、公式のWikiソースから最新かつ最も正確な情報を受け取ることができます。", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "Terraria Wiki: Fandomからwiki.ggへ", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/9_terraria-fandom-wiki-to-wiki-gg/i18n/ko/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "이 규칙을 활성화하면 Fandom에서 테라리아 위키에 접속하려는 사용자는 자동으로 wiki.gg의 새 도메인으로 리디렉션되어 공식 위키 소스에서 최신 및 가장 정확한 정보를 받을 수 있습니다.", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "테라리아 위키: Fandom에서 wiki.gg로", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/9_terraria-fandom-wiki-to-wiki-gg/i18n/zh-hans/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "rule-set.json#/redirects/0/comments": { 3 | "message": "启用此规则后,尝试访问Fandom上泰拉瑞亚维基的用户将自动重定向到wiki.gg上的新域名,确保他们从官方维基来源获取最新、最准确的信息。", 4 | "description": "The comments of redirect rule #0" 5 | }, 6 | "rule-set.json#/redirects/0/title": { 7 | "message": "泰拉瑞亚维基:从Fandom到wiki.gg", 8 | "description": "The title of redirect rule #0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /library/rule-sets/9_terraria-fandom-wiki-to-wiki-gg/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "contributorGitHubIds": [ 3 | "mshibanami" 4 | ], 5 | "imageFiles": [ 6 | "screenshot.jpg" 7 | ], 8 | "primaryCategoryId": "gaming" 9 | } 10 | -------------------------------------------------------------------------------- /library/rule-sets/9_terraria-fandom-wiki-to-wiki-gg/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/library/rule-sets/9_terraria-fandom-wiki-to-wiki-gg/screenshot.jpg -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | ignoredBuiltDependencies: 2 | - core-js 3 | - core-js-pure 4 | 5 | onlyBuiltDependencies: 6 | - esbuild 7 | -------------------------------------------------------------------------------- /release-notes/7.11.0.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Version 7.11.0 3 | date: 2025-05-01 4 | --- 5 | 6 | ![Supported Platforms: iOS | macOS | visionOS](https://img.shields.io/badge/Platforms-iOS%20|%20macOS%20|%20visionOS-white) 7 | 8 | * Fixed an issue where the Rule Details screen in the Library showed nothing on iOS 17 or earlier, and macOS Sonoma or earlier. 9 | 10 | -------------------------------------------------------------------------------- /release-notes/7.15.0.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Version 7.15.0 3 | date: 2025-04-09 4 | --- 5 | 6 | ![Supported Platforms: iOS | macOS | visionOS](https://img.shields.io/badge/Platforms-iOS%20|%20macOS%20|%20visionOS-white) 7 | 8 | * [iPad, visionOS] Fixed broken layout of the extension popup shown in Safari. 9 | * Improved the UI of the extension popup in Safari. 10 | * Fixed localizations for non-English languages. 11 | * Other minor improvements and bug fixes. 12 | -------------------------------------------------------------------------------- /release-notes/7.16.0.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Version 7.16.0 3 | date: 2025-04-15 4 | --- 5 | 6 | ![Supported Platforms: iOS | macOS | visionOS](https://img.shields.io/badge/Platforms-iOS%20|%20macOS%20|%20visionOS-white) 7 | 8 | * A major improvement to the `Original` redirection type. Now it works faster & reliable than before. 9 | * Improved the localized app name in the App Store for Chinese, Japanese, Korean, and Russian languages. 10 | * [iOS] Supported dark themed app icon for iOS 18 or later. 11 | -------------------------------------------------------------------------------- /release-notes/7.17.0.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Version 7.17.0 3 | date: 2025-05-02 4 | --- 5 | 6 | ![Supported Platforms: iOS | macOS | visionOS](https://img.shields.io/badge/Platforms-iOS%20|%20macOS%20|%20visionOS-white) 7 | 8 | * Now the app displays more detailed error messages, highlighting specific characters when an invalid pattern is entered in the Redirect From section. 9 | * [iOS] Improved the dark themed app icon. 10 | -------------------------------------------------------------------------------- /release-notes/7.17.1.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Version 7.17.1 3 | date: 2025-05-05 4 | --- 5 | 6 | ![Supported Platforms: iOS | macOS | visionOS](https://img.shields.io/badge/Platforms-iOS%20|%20macOS%20|%20visionOS-white) 7 | 8 | * Hot fix of displaying the detailed error message introduced in 7.17.0. 9 | * Updated the app screenshots in the App Store. 10 | -------------------------------------------------------------------------------- /release-notes/7.18.1.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Version 7.18.1 3 | date: 2025-05-16 4 | --- 5 | 6 | ![Supported Platforms: iOS | macOS | visionOS](https://img.shields.io/badge/Platforms-iOS%20|%20macOS%20|%20visionOS-white) 7 | 8 | * Fixed a crash that could occur when entering an invalid URL pattern in the Redirect From section on the Edit Rule screen. This issue has existed since version 7.17.0. We recommend updating to this version if you have already installed 7.17.0 or later. Sorry for the inconvenience. 9 | -------------------------------------------------------------------------------- /release-notes/8.2.0.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Version 8.2.0 3 | date: 2025-08-29 4 | --- 5 | 6 | ![Supported Platforms: iOS](https://img.shields.io/badge/Platforms-iOS-white) 7 | 8 | * [iOS] Changed the dark mode app icon. 9 | 10 | 11 | 12 | (The recent major update is [here](/8.0.0.mdx) in case you missed it!) 13 | 14 | Thank you for your continued support! If you enjoy using Redirect Web, please consider leaving a review on the stores. It really helps! 15 | -------------------------------------------------------------------------------- /src/components/Award/award-ivy-leaf-leading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/src/components/Award/award-ivy-leaf-leading.png -------------------------------------------------------------------------------- /src/components/LandingPageBackground/styles.module.scss: -------------------------------------------------------------------------------- 1 | .gradient { 2 | position: absolute; 3 | top: 0; 4 | left: 0; 5 | width: 100%; 6 | height: 100%; 7 | overflow: hidden; 8 | z-index: 0; 9 | } 10 | -------------------------------------------------------------------------------- /src/components/LandingPageBackground/vertex-shader.glsl: -------------------------------------------------------------------------------- 1 | varying vec2 vUv; 2 | void main() { 3 | vUv = uv; 4 | gl_Position = projectionMatrix * modelViewMatrix * vec4(position, 1.0); 5 | } 6 | -------------------------------------------------------------------------------- /src/components/ReleaseNotesList/Header/styles.module.scss: -------------------------------------------------------------------------------- 1 | .rss, 2 | .rss:hover { 3 | color: #f26522; 4 | } 5 | 6 | -------------------------------------------------------------------------------- /src/theme/NavbarItem/DropdownNavbarItem/Mobile/styles.module.css: -------------------------------------------------------------------------------- 1 | .dropdownNavbarItemMobile { 2 | cursor: pointer; 3 | } 4 | -------------------------------------------------------------------------------- /src/theme/NavbarItem/LocaleDropdownNavbarItem/styles.module.css: -------------------------------------------------------------------------------- 1 | .iconLanguage { 2 | vertical-align: text-bottom; 3 | margin-right: 5px; 4 | } 5 | 6 | .dropdownLabel { 7 | display: inline-block; 8 | } 9 | 10 | @media (max-width: 996px) { 11 | .dropdownLabel { 12 | display: none; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/types/styles.d.ts: -------------------------------------------------------------------------------- 1 | declare module '*.module.scss' { 2 | const classes: { [key: string]: string }; 3 | export default classes; 4 | } 5 | 6 | declare module '*.module.css' { 7 | const classes: { [key: string]: string }; 8 | export default classes; 9 | } 10 | -------------------------------------------------------------------------------- /static/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/static/.nojekyll -------------------------------------------------------------------------------- /static/google7df7843a25365152.html: -------------------------------------------------------------------------------- 1 | google-site-verification: google7df7843a25365152.html -------------------------------------------------------------------------------- /static/img/context-menu-redirector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/static/img/context-menu-redirector.png -------------------------------------------------------------------------------- /static/img/edit-rule-dnr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/static/img/edit-rule-dnr.png -------------------------------------------------------------------------------- /static/img/error-overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/static/img/error-overlay.png -------------------------------------------------------------------------------- /static/img/extension-popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/static/img/extension-popup.png -------------------------------------------------------------------------------- /static/img/files-share-ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/static/img/files-share-ios.png -------------------------------------------------------------------------------- /static/img/landing-feature-library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/static/img/landing-feature-library.png -------------------------------------------------------------------------------- /static/img/landing-feature-multi-platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/static/img/landing-feature-multi-platform.png -------------------------------------------------------------------------------- /static/img/landing-feature-native-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/static/img/landing-feature-native-ui.png -------------------------------------------------------------------------------- /static/img/landing-feature-redirection-engine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/static/img/landing-feature-redirection-engine.png -------------------------------------------------------------------------------- /static/img/library-get-button-ios.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/static/img/library-get-button-ios.gif -------------------------------------------------------------------------------- /static/img/library-screenshot.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/static/img/library-screenshot.webp -------------------------------------------------------------------------------- /static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/static/img/logo.png -------------------------------------------------------------------------------- /static/img/macPrepareExtensionPermissionAlertChrome@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/static/img/macPrepareExtensionPermissionAlertChrome@3x.png -------------------------------------------------------------------------------- /static/img/menubar-file-redirector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/static/img/menubar-file-redirector.png -------------------------------------------------------------------------------- /static/img/menubar-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/static/img/menubar-file.png -------------------------------------------------------------------------------- /static/img/multiselect-on-macos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/static/img/multiselect-on-macos.png -------------------------------------------------------------------------------- /static/img/prepareExtensionPermissionAlert@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/static/img/prepareExtensionPermissionAlert@3x.png -------------------------------------------------------------------------------- /static/img/redirect-a-to-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/static/img/redirect-a-to-b.png -------------------------------------------------------------------------------- /static/img/release-notes/multi-browser-support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/static/img/release-notes/multi-browser-support.png -------------------------------------------------------------------------------- /static/img/rule-creation-open-another-website-rule-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/static/img/rule-creation-open-another-website-rule-preview.png -------------------------------------------------------------------------------- /static/img/rule-edit-example-result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/static/img/rule-edit-example-result.png -------------------------------------------------------------------------------- /static/img/safari-additional-permission-alert.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/static/img/safari-additional-permission-alert.webp -------------------------------------------------------------------------------- /static/img/share-on-macos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/static/img/share-on-macos.png -------------------------------------------------------------------------------- /static/img/share-sheet-ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/static/img/share-sheet-ios.png -------------------------------------------------------------------------------- /static/img/social-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/static/img/social-card.png -------------------------------------------------------------------------------- /static/misc/test.js: -------------------------------------------------------------------------------- 1 | document.getElementById('button1').addEventListener('click', function () { 2 | const deepLinkURL = "yattee://watch?v=lrVT5VFfi5w"; 3 | window.open(deepLinkURL, '_self'); 4 | }); 5 | -------------------------------------------------------------------------------- /static/videos/landing-demo.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mshibanami/redirect-web/52d89e9aefd32186e84de79582fc3d8183c5096a/static/videos/landing-demo.mov -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | // This file is not used in compilation. It is here just for a nice editor experience. 3 | "extends": "@docusaurus/tsconfig", 4 | "compilerOptions": { 5 | "baseUrl": "." 6 | }, 7 | "exclude": [ 8 | ".docusaurus", 9 | "build" 10 | ] 11 | } 12 | --------------------------------------------------------------------------------