{"id":15646290,"url":"https://github.com/fornever/msdn-delocalizer","last_synced_at":"2025-08-21T03:32:48.904Z","repository":{"id":42233283,"uuid":"254850001","full_name":"ForNeVeR/msdn-delocalizer","owner":"ForNeVeR","description":"Chrome and Firefox extension to force MSDN (and similar Microsoft documentation sites) to always use English locale.","archived":false,"fork":false,"pushed_at":"2025-04-30T20:56:28.000Z","size":860,"stargazers_count":59,"open_issues_count":2,"forks_count":3,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-30T21:40:02.829Z","etag":null,"topics":["chrome","firefox","microsoft"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ForNeVeR.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2020-04-11T11:09:07.000Z","updated_at":"2025-04-30T20:56:25.000Z","dependencies_parsed_at":"2023-02-18T00:45:20.479Z","dependency_job_id":"f9f55c8e-a488-4d34-a50a-aba428a45217","html_url":"https://github.com/ForNeVeR/msdn-delocalizer","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/ForNeVeR/msdn-delocalizer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ForNeVeR%2Fmsdn-delocalizer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ForNeVeR%2Fmsdn-delocalizer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ForNeVeR%2Fmsdn-delocalizer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ForNeVeR%2Fmsdn-delocalizer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ForNeVeR","download_url":"https://codeload.github.com/ForNeVeR/msdn-delocalizer/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ForNeVeR%2Fmsdn-delocalizer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271420535,"owners_count":24756588,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-21T02:00:08.990Z","response_time":74,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["chrome","firefox","microsoft"],"created_at":"2024-10-03T12:12:15.188Z","updated_at":"2025-08-21T03:32:48.886Z","avatar_url":"https://github.com/ForNeVeR.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003c!--\nSPDX-FileCopyrightText: 2024-2025 Friedrich von Never \u003cfriedrich@fornever.me\u003e\n\nSPDX-License-Identifier: MIT\n--\u003e\n\nmsdn-delocalizer [![Chrome Web Store][badge-chrome-web-store]][chrome-web-store] [![Firefox Add-ons][badge-firefox-add-ons]][firefox-add-ons]\n================\n![Extension icon][icon]\n\nSometimes, when looking for Microsoft documentation via a search engine, you\nmay be presented with a link leading to a localized documentation page from\nMicrosoft. Quality of translation varies a lot, but, as English speaker, you\nmay choose to not deal with localization at all, and always look for English\npages.\n\nmsdn-delocalizer is a browser (Chrome, Firefox) extension that will automatically delocalize Microsoft documentation pages, such as MSDN, docs.microsoft.com, or learn.microsoft.com.\n\n![Screenshot required by Chrome Web Store][screenshot]\n\nInstall\n-------\n\n- [Chrome Web Store][chrome-web-store]\n- [Firefox Add-ons][firefox-add-ons]\n\nDevelopment\n-----------\n### Prerequisites\n\n- [node.js][] v22 or newer\n- [yarn][] 1.22 or newer\n- [ImageMagick][imagemagick] 7.0.11-12 or newer (only if you need to prepare a new extension icon)\n\nTo set the Node-related prerequisites up, you may use [Volta][volta]:\n\n```console\n$ volta install node@22\n$ volta install yarn@1\n```\n\n### Build\n\nInstall the dependencies:\n\n```console\n$ yarn install\n```\n\nThe project supports several build options. Use the following commands based on your needs:\n\n- **Development with hot reload**:\nLaunches a development server with hot reload. The extension files are placed in the `build/{browser-name}-mv{mv-ver}` directory.\n    ```console\n    $ yarn run dev # for Chromium-based browsers (manifest v3)\n    $ yarn run dev:firefox # for Firefox-based browsers (manifest v2)\n    ```\n\n- **Build for production**:\nCreates a production build of the extension in the `build/{browser-name}-mv{mv-ver}` directory.\n  ```console\n  $ yarn run build # for Chromium-based browsers (manifest v3)\n  $ yarn run build:firefox # for Firefox-based browsers (manifest v2)\n  ```\n\n- **Create ZIP files for extension stores**:\nBuilds the extension for both Chrome and Firefox, generating two ZIP files in the `build` directory. Firefox-specific command also creates a zip with sources as its store requires them.\n  ```console\n  $ yarn run zip # for Chromium-based browsers (manifest v3)\n  $ yarn run zip:firefox # for Firefox-based browsers (manifest v2)\n  $ yarn run zip:all # for all browsers\n  ```\n\n### Test\n\n```console\n$ yarn test\n```\n\n### Icon (optional)\n\nIf you have prepared a new extension icon, then run the following shell command to add it to the package:\n\n```console\n$ yarn run icon\n```\n\n### Install (developer mode)\n\n- **Chrome**: to install msdn-delocalizer to your Chrome in the [developer mode][chrome-dev-mode], load the `build/chrome-mv3` directory as the unpacked extension source, and refresh it after every rebuild.\n- **Firefox**:\n  - open **Settings** via the main menu,\n  - enter the **Extensions and Themes** page\n  - click the **Debug Add-ons** action from the page gear menu\n  - **Load Temporary Add-on**, navigate to the `build/firefox-mv2` and select `manifest.json`\n\nDocumentation\n-------------\n\n- [Changelog][changelog]\n- [Contributor Guide][docs.contributing]\n- [Maintainership][maintainership]\n\nLicense\n-------\nThe project is distributed under the terms of [the MIT license][docs.license].\n\nThe license indication in the project's sources is compliant with the [REUSE specification v3.3][reuse.spec].\n\n[badge-chrome-web-store]: https://img.shields.io/chrome-web-store/v/oakieneemalliefelmegebjjagnjgpbm\n[badge-firefox-add-ons]: https://img.shields.io/amo/v/msdn-delocalizer\n[changelog]: ./CHANGELOG.md\n[chrome-dev-mode]: https://developer.chrome.com/docs/extensions/get-started/tutorial/hello-world#load-unpacked\n[chrome-web-store]: https://chrome.google.com/webstore/detail/msdn-delocalizer/oakieneemalliefelmegebjjagnjgpbm\n[docs.contributing]: CONTRIBUTING.md\n[docs.license]: ./LICENSE.txt\n[firefox-add-ons]: https://addons.mozilla.org/en-US/firefox/addon/msdn-delocalizer/\n[icon]: ./src/icon.svg\n[imagemagick]: https://imagemagick.org/\n[maintainership]: ./MAINTAINERSHIP.md\n[node.js]: https://nodejs.org/en\n[reuse.spec]: https://reuse.software/spec-3.3/\n[screenshot]: docs/screenshot.png\n[volta]: https://volta.sh/\n[yarn]: https://classic.yarnpkg.com/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffornever%2Fmsdn-delocalizer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffornever%2Fmsdn-delocalizer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffornever%2Fmsdn-delocalizer/lists"}