Skip to content

Commit 2eb6d93

Browse files
committed
remove "part n" from filenames
1 parent 651642f commit 2eb6d93

11 files changed

Lines changed: 28 additions & 18 deletions

File tree

.openpublishing.redirection.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,16 @@ Old redirects (to /archive/)
147147
"redirect_url": "/microsoft-edge/extensions-chromium/developer-guide/csp",
148148
"redirect_document_id": false
149149
},
150+
{
151+
"source_path": "microsoft-edge/extensions-chromium/getting-started/part1-simple-extension.md",
152+
"redirect_url": "/microsoft-edge/extensions-chromium/getting-started/picture-viewer-popup-webpage",
153+
"redirect_document_id": false
154+
},
155+
{
156+
"source_path": "microsoft-edge/extensions-chromium/getting-started/part2-content-scripts.md",
157+
"redirect_url": "/microsoft-edge/extensions-chromium/getting-started/picture-inserter-content-script",
158+
"redirect_document_id": false
159+
},
150160

151161
/* Progressive Web Apps: */
152162
{

microsoft-edge/developer/index.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ landingContent:
102102
url: ../extensions-chromium/publish/create-dev-account.md
103103

104104
- text: "Sample: Display an image in a pop-up"
105-
url: ../extensions-chromium/getting-started/part1-simple-extension.md
105+
url: ../extensions-chromium/getting-started/picture-viewer-popup-webpage.md
106106

107107
# -----------------------------------------------------------------------------
108108
# Card r1c3

microsoft-edge/devtools-guide-chromium/sources/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ When the debugger steps into code that you don't recognize, you might want to ad
187187

188188
See also:
189189
* [Content scripts](https://developer.mozilla.org/Add-ons/WebExtensions/Content_scripts)
190-
* [Sample: Insert an image in the webpage](../../extensions-chromium/getting-started/part2-content-scripts.md)
190+
* [Sample: Insert an image in the webpage](../../extensions-chromium/getting-started/picture-inserter-content-script.md)
191191

192192

193193
<!-- ------------------------------ -->

microsoft-edge/extensions-chromium/developer-guide/sidebar.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -316,8 +316,8 @@ See [Types](https://developer.chrome.com/docs/extensions/reference/sidePanel/#ty
316316
* [Supported APIs for Microsoft Edge extensions](../developer-guide/api-support.md)
317317
* [Declare API permissions in the manifest](../developer-guide/declare-permissions.md)
318318
* [Manifest file format for extensions](../getting-started/manifest-format.md)
319-
* [Sample: Display an image in a pop-up](../getting-started/part1-simple-extension.md)
320-
* [Sample: Insert an image in the webpage](../getting-started/part2-content-scripts.md)
319+
* [Sample: Display an image in a pop-up](../getting-started/picture-viewer-popup-webpage.md)
320+
* [Sample: Insert an image in the webpage](../getting-started/picture-inserter-content-script.md)
321321

322322

323323
<!-- ====================================================================== -->

microsoft-edge/extensions-chromium/getting-started/extension-sideloading.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ To sideload an extension into Microsoft Edge, so that it's locally installed in
3232

3333
1. Select the directory that contains the extension's source files, such as `manifest.json`, and then click the **Select Folder** button.
3434

35-
Example path for [Sample: Display an image in a pop-up](./part1-simple-extension.md):
35+
Example path for [Sample: Display an image in a pop-up](./picture-viewer-popup-webpage.md):
3636

3737
`C:\Users\myUsername\GitHub\MicrosoftEdge-Extensions\Extension samples\extension-getting-started-part1\part1\`
3838

39-
Example path for [Sample: Insert an image in the webpage](./part2-content-scripts.md):
39+
Example path for [Sample: Insert an image in the webpage](./picture-inserter-content-script.md):
4040

4141
`C:\Users\myUsername\GitHub\MicrosoftEdge-Extensions\Extension samples\extension-getting-started-part2\extension-getting-started-part2\`
4242

@@ -83,5 +83,5 @@ To remove an extension that's been installed locally (sideloaded) in your browse
8383
## See also
8484
<!-- all links in article -->
8585

86-
* [Sample: Display an image in a pop-up](./part1-simple-extension.md)
87-
* [Sample: Insert an image in the webpage](./part2-content-scripts.md)
86+
* [Sample: Display an image in a pop-up](./picture-viewer-popup-webpage.md)
87+
* [Sample: Insert an image in the webpage](./picture-inserter-content-script.md)

microsoft-edge/extensions-chromium/getting-started/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,4 +73,4 @@ An extension provides opt-in permissions at install time. You specify the exten
7373
<!-- ====================================================================== -->
7474
## Next steps
7575

76-
For information on getting started with your extension, see [Sample: Display an image in a pop-up](part1-simple-extension.md).
76+
Next, install, run, and study [Sample: Display an image in a pop-up](./picture-viewer-popup-webpage.md).

microsoft-edge/extensions-chromium/getting-started/part2-content-scripts.md renamed to microsoft-edge/extensions-chromium/getting-started/picture-inserter-content-script.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Obtain, install, and run the sample as follows.
4646
<!-- ====================================================================== -->
4747
## Clone the MicrosoftEdge-Extensions repo
4848

49-
<!-- main copy of this section is in part1-simple-extension.md#Clone the MicrosoftEdge-Extensions repo > -->
49+
<!-- main copy of this section is in picture-viewer-popup-webpage.md#Clone the MicrosoftEdge-Extensions repo > -->
5050
You can use various tools to clone a GitHub repo. You can download a selected directory, or clone the entire repo. These instructions use GitHub Desktop to clone the repo and switch to a working branch.
5151

5252
To clone the `MicrosoftEdge-Extensions` repo to your local drive:
@@ -447,7 +447,7 @@ To develop your own Microsoft Edge extension, you can copy and modify the sample
447447
## See also
448448
<!-- all links in article -->
449449

450-
* [Sample: Display an image in a pop-up](./part1-simple-extension.md)
450+
* [Sample: Display an image in a pop-up](./picture-viewer-popup-webpage.md)
451451
* [Sideload an extension to install and test it locally](extension-sideloading.md)
452452

453453
GitHub:

microsoft-edge/extensions-chromium/getting-started/part1-simple-extension.md renamed to microsoft-edge/extensions-chromium/getting-started/picture-viewer-popup-webpage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -240,15 +240,15 @@ The popup (`popup.html`) is registered as the `"default_popup"` in `manifest.jso
240240

241241
To develop your own Microsoft Edge extension, you can copy and modify the sample's directory, and install and test the resulting extension.
242242

243-
After running and testing this extension sample, you can continue on to [Sample: Insert an image in the webpage](./part2-content-scripts.md), which dynamically inserts JavaScript running as content in the browser tab.
243+
After running and testing this extension sample, you can continue on to [Sample: Insert an image in the webpage](./picture-inserter-content-script.md), which dynamically inserts JavaScript running as content in the browser tab.
244244

245245

246246
<!-- ====================================================================== -->
247247
## See also
248248
<!-- all links in article -->
249249

250250
* [Sideload an extension to install and test it locally](./extension-sideloading.md)
251-
* [Sample: Insert an image in the webpage](./part2-content-scripts.md)
251+
* [Sample: Insert an image in the webpage](./picture-inserter-content-script.md)
252252

253253
GitHub:
254254
* [MicrosoftEdge-Extensions](https://github.com/microsoft/MicrosoftEdge-Extensions) repo.

microsoft-edge/extensions-chromium/landing/index.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@ landingContent:
5050
url: ../getting-started/index.md
5151

5252
- text: "Sample: Display an image in a pop-up"
53-
url: ../getting-started/part1-simple-extension.md
53+
url: ../getting-started/picture-viewer-popup-webpage.md
5454

5555
- text: "Sample: Insert an image in the webpage"
56-
url: ../getting-started/part2-content-scripts.md
56+
url: ../getting-started/picture-inserter-content-script.md
5757

5858
- text: Sideload an extension to install and test it locally
5959
url: ../getting-started/extension-sideloading.md

microsoft-edge/index.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ conceptualContent:
258258
itemType: how-to-guide
259259

260260
- text: "Sample: Display an image in a pop-up"
261-
url: ./extensions-chromium/getting-started/part1-simple-extension.md
261+
url: ./extensions-chromium/getting-started/picture-viewer-popup-webpage.md
262262
itemType: how-to-guide
263263

264264
# -----------------------------------------------------------------------------

0 commit comments

Comments
 (0)