Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
Version | Status |
---|---|
72 | Inactive |
71 | Inactive |
70 | Rejected |
69 | Rejected |
68 | Rejected |
67 | Rejected |
66 | Rejected |
65 | Rejected |
64 | Inactive |
63 | Inactive |
62 | Inactive |
61 | Inactive |
60 | Inactive |
59 | Inactive |
58 | Inactive |
57 | Inactive |
56 | Inactive |
55 | Inactive |
54 | Inactive |
53 | Inactive |
52 | Inactive |
51 | Inactive |
50 | Rejected |
49 | Rejected |
48 | Inactive |
47 | Inactive |
46 | Inactive |
45 | Inactive |
44 | Inactive |
43 | Rejected |
42 | Rejected |
41 | Inactive |
40 | Inactive |
39 | Rejected |
38 | Inactive |
37 | Inactive |
36 | Inactive |
35 | Inactive |
34 | Inactive |
33 | Inactive |
32 | Inactive |
31 | Inactive |
30 | Inactive |
29 | Inactive |
28 | Inactive |
27 | Inactive |
26 | Inactive |
25 | Inactive |
24 | Inactive |
23 | Inactive |
22 | Inactive |
21 | Inactive |
20 | Inactive |
19 | Inactive |
18 | Inactive |
17 | Inactive |
16 | Inactive |
15 | Inactive |
14 | Inactive |
13 | Inactive |
12 | Inactive |
11 | Rejected |
10 | Inactive |
9 | Inactive |
8 | Inactive |
7 | Inactive |
6 | Inactive |
5 | Inactive |
4 | Inactive |
3 | Inactive |
2 | Inactive |
1 | Inactive |
1. Don't create objects in global scope (line 15 libs/utils.js): https://gjs.guide/extensions/review-guidelines/review-guidelines.html#only-use-init-for-initialization Move that inside `textFromBytes()` function. 2. Add to the description that this extension is using dpaste.com. Maybe also change the button label to `Paste to Pastebin (online)` so users can understand that is getting uploaded there.
> 1. Don't create objects in global scope (line 15 libs/utils.js): > https://gjs.guide/extensions/review-guidelines/review-guidelines.html#only-use-init-for-initialization > > Move that inside `textFromBytes()` function. Is the code below okay? ``` var textFromBytes = function(bytes) { return new TextDecoder().decode(bytes); }; ``` > 2. Add to the description that this extension is using dpaste.com. > Maybe also change the button label to `Paste to Pastebin (online)` > so users can understand that is getting uploaded there. Do you mean the description in `metadata.json` or on EGO? The dpaste.com doesn't state that I have to mention anywhere that I'm using their service. Also, pastebin is a generic name, not a brand name. See https://en.wikipedia.org/wiki/Pastebin
1. Yes, if it is working properly. 2. I mean mention it in the `metadata.json` description. It's not about the trademark. It's about the privacy and end users should know that this extension is using that online service.
> It's about the privacy This extension doesn't send any data in the background or somehow implicitly, but only when the user clicks the "Paste to Pastebin" menu item. The most I'm willing to do is rename this menu item to "Share Online".
I understand. Share Online is also good for the menu item label.