Skip to content
This repository was archived by the owner on Jun 27, 2025. It is now read-only.

Commit 2a65dd4

Browse files
committed
feat: enable seamless code copying and update documentation
- Add "Enable Full Copying" feature to CHANGELOG with automated scrolling (Feb 26, 2025). - Update README: consolidate features under Feb 26, remove outdated entries, and add troubleshooting steps. - Bump extension version to 1.0.5 in manifest.json. - Fix JSON syntax in manifest by replacing optional_host_permissions with host_permissions.
1 parent 5c9dd38 commit 2a65dd4

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Change Log
22

3+
### - 26 February, 2025
4+
- **Enable Full Copying:** Users can now copy code without the need to zoom out on the website. This enhancement automates the scrolling process, ensuring a seamless copying experience.
5+
36
### - 17 February, 2025
47
- **Update Link:** Recently dhiwise changed the link that refers to the project, so we changed to mirrow the changes. Which previous was `/application` but now it is `/design-converter/application`.
58

README.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,12 @@
77
</p>
88

99
## 🚀 New Features & Fixes 🎉
10-
### - 23 February, 2025
10+
### - 26 February, 2025
1111

1212
- **Scroll Emulation:** Automatically collect full code content via scroll emulation.
1313
- **Content Collection:** Reworked content collection mechanism. Added temporary collector for storing strings.
1414
- **Copy:** Fixed problem with partial copying of visible content only.
15-
16-
### - 17 February, 2025
17-
18-
- **Link Change:** Update the recently link changes to mirrow the dhiwise changes made.
15+
- If the `copy code` does not appear then refresh the page, and turn on the extension.
1916

2017
[More Changes & Feature](CHANGELOG.md)
2118

manifest.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Dhiwise Code Copy",
3-
"version": "1.0.1.1",
3+
"version": "1.0.5",
44
"description": "Copy your codes from your converted dhiwise application made easy!",
55
"manifest_version": 3,
66
"author": "Isaka-James",
@@ -22,9 +22,8 @@
2222
"permissions": [
2323
"activeTab", "tabs"
2424
],
25-
"optional_host_permissions":[
26-
"https://*/*",
27-
"http://*/*"
25+
"host_permissions":[
26+
"https://app.dhiwise.com/*"
2827
]
2928

3029
}

0 commit comments

Comments
 (0)