Skip to content

Commit

Permalink
Correct add-on name #130
Browse files Browse the repository at this point in the history
  • Loading branch information
Cimbali committed Feb 15, 2021
1 parent 38fa446 commit 1acf4fb
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion addon/manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "Clean Links",
"name": "CleanLinks",
"description": "__MSG_addon_description__",
"author": "Cimbali (maintainer), \nDiego Casorran (historic creator), \nEduard Braun (German translation), \nSimon Chan (Chinese and Taiwanese translations)",
"manifest_version": 2,
Expand Down
4 changes: 2 additions & 2 deletions docs/export.html
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
{
const manifest = JSON.parse(await json.text());
const h1 = document.getElementsByTagName('h1')[0];
h1.textContent = h1.textContent.replace('Clean Links', 'Clean Links v' + manifest.version);
h1.textContent = h1.textContent.replace('CleanLinks', 'CleanLinks v' + manifest.version);
});
});
</script>
Expand Down Expand Up @@ -210,7 +210,7 @@
</style>
</head>
<body>
<h1>Export Clean Links default rules in NeatURL-like format</h1>
<h1>Export CleanLinks default rules in NeatURL-like format</h1>

<p class="topo">Rules are in the following format: <code>{rule type identifier}{rule matching}[@{domain}[/{path}]]</code></p>

Expand Down
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@
</head>

<body>
<h1>Test cleaning with default rules of Clean Links</h1>
<h1>Test cleaning with default rules of CleanLinks</h1>
<p id="paste_link">Link:&nbsp;<input type="text" />&nbsp;<button>Clean it!</button></p>
<ul id="clean_history"></ul>
</body>
Expand Down
2 changes: 1 addition & 1 deletion tests/setup.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ if (typeof browser === 'undefined' && typeof chrome !== 'undefined')
// sinon-chrome does not get the manifest
browser.runtime = {
getManifest: () => ({
"name": "Clean Links",
"name": "CleanLinks",
"description": "Converts obfuscated/nested links to genuine clean links",
"author": "Cimbali (maintainer), \nDiego Casorran (historic creator), \nEduard Braun (German translation), \nSimon Chan (Chinese and Taiwanese translations)",
"version": "tests",
Expand Down

0 comments on commit 1acf4fb

Please sign in to comment.