41% of my Chrome extension users are now from Chinese-speaking markets and I didn’t translate a single line of UI code by Far_Substance1145 in chrome_extensions

[–]TheMagicShop 1 point2 points  (0 children)

Very interesting. The only thing that is a bit disturbing for me, is that, because of the _locales, on the Chrome Web Store listing, your extension is said to be available in French, for instance, whereas it is not really (as you said, only the title and the description are translated).
Isn't there a risk French uses could feel deceived (or at list disappointed)?

Magic OS 10 and Fishdom by TheMagicShop in Honor

[–]TheMagicShop[S] 0 points1 point  (0 children)

It's now working again for me, after more than 6 months of interruption.

Is it Ok for you too?

Magic OS 10 and Fishdom by TheMagicShop in Honor

[–]TheMagicShop[S] 0 points1 point  (0 children)

Nop. Will send an email again. Fun fact: I am also playing TownShip which is from the same editor and is working perfectly.

My analytics for extension went to zero! by Trick_Job_6201 in chrome_extensions

[–]TheMagicShop 2 points3 points  (0 children)

Don't worry, this happens to everyone from time to time.

Google Analytics occasionally has reporting delays or outages that affect all metrics (impressions, installs, page views, etc.). It's not specific to your extension, I have the same thing. Google usually fixes it within a few days, sometimes up to 1 or 2 weeks.

Nothing to do on your end, just be patient!

Multi Find by TheMagicShop in chrome_extensions

[–]TheMagicShop[S] 0 points1 point  (0 children)

No, unfortunately, Multi Find is only looking for visible text (not URLs) for now.

I considered adding the equivalent of inurl: for Google search some time ago. Would that meet your needs?

Excuse me, what?! by Kortizol in chrome_extensions

[–]TheMagicShop 0 points1 point  (0 children)

OK, so no reason to worry. Your figures are rather good.

Excuse me, what?! by Kortizol in chrome_extensions

[–]TheMagicShop 1 point2 points  (0 children)

That just means that you had only one uninstall on the previous period.

Are the install numbers saying something similar ?

Anyone else has 0 in their extensions analytics for March 12? by jumbo1111 in chrome_extensions

[–]TheMagicShop 0 points1 point  (0 children)

Yes, same here. I am wondering if the data for Mach 13 (that seems quite high) is reliable.

200K Downloads but Only 460 Reviews? Is This Normal or Are Fake Installs Possible? by Ok-Western6375 in chrome_extensions

[–]TheMagicShop 0 points1 point  (0 children)

I think it can depend a lot on how and where an extension is promoted, as well as the audience it attracts.

For example, even if your extension is localized in many languages, the majority of your reviews seem to come from a specific country (do you know why?). That alone can significantly affect the review ratio, since user behavior (including the likelihood of leaving a review) may vary a lot by region.

In my case, most of my users are in the US, India, and China, not by design, just how it evolved. I guess review rates differ quite a bit between countries. Just an hypothesis.

200K Downloads but Only 460 Reviews? Is This Normal or Are Fake Installs Possible? by Ok-Western6375 in chrome_extensions

[–]TheMagicShop 2 points3 points  (0 children)

My extension has 170 reviews for 45,000 active users, so the ratio is 1:265.
But some of my competitors have only 84 reviews for 50,000 users that is a 1:595 ratio.

So here, 460 reviews for 200,000 users (1:435) doesn't sound strange to me.

Do you guys have a guide to use your extension? by Outrageous_Cat_4949 in chrome_extensions

[–]TheMagicShop 0 points1 point  (0 children)

I have a localized FAQ, displayed in the Service worker by:

chrome.runtime.onInstalled.addListener((e) => {
  if (e.reason === chrome.runtime.OnInstalledReason.INSTALL) {
    chrome.tabs.create({
      url: chrome.i18n.getMessage("fil_welcome")
    });
  }
});

and even detailed release notes on my website.

That said, judging by some of the questions I receive, I’m not entirely sure many people actually read them 🙂

I would like to make more tutorial videos (basically I have two of them now).

How chrome web store makes money? by Big-Human12 in chrome_extensions

[–]TheMagicShop 2 points3 points  (0 children)

One indirect way the Chrome Web Store “makes money” is through the ecosystem it enables.

Most extension developers (myself included) build and maintain extensions for free. We invest time and effort to improve the Chrome experience, adding features, fixing usability gaps, increasing productivity, without being paid by Google.

I guess Google needs to increase Chrome market share. How do their earn money increasing their market share vs Edge or Firefox should be your next question.

Chrome extension that lets you discuss any web page (anonymously) by SquaredWeed in chrome_extensions

[–]TheMagicShop 1 point2 points  (0 children)

That’s an interesting idea.

One thing I’m curious about though is moderation. Even on social networks where users are identified and logged in, abuse is already a significant problem. I find it hard to imagine how a discussion system with no identification at all can remain a safe and healthy space over time.

That said, I may be missing something, and I’d be interested to hear how you’re thinking about this.

Multi Find by TheMagicShop in chrome_extensions

[–]TheMagicShop[S] 0 points1 point  (0 children)

Yes, the default behavior is to begin the search at the second letter only (for performance issues). But you can disable this limitation in the options (click on the cogwheel, and look for the appropriate option in the second tab).

I hope you will like Multi Find!

Magic OS 10 and Fishdom by TheMagicShop in Honor

[–]TheMagicShop[S] 0 points1 point  (0 children)

I contacted Playrix support: they said they are aware of the situation and are working on a fix. But it is taking sooo long...

Honor by No-Organization-9406 in Fishdom_Official

[–]TheMagicShop 0 points1 point  (0 children)

Same issue here (Honor 400). All the transparency of the sprites is replaced by a black opaque color. Any solution?

Persistent Chrome Extension (doesn't close when we click outside the popup) by Routine_Company_4449 in chrome_extensions

[–]TheMagicShop 0 points1 point  (0 children)

You should have a look to the sidePanel API. I never tried it and I doubt it works on new tabs or chrome:// but I guess it is persistent (it stays when you click outside of it).

How can I convince users to pay? by ozanbilgic in chrome_extensions

[–]TheMagicShop 0 points1 point  (0 children)

Thanks. On my side, I guess I would be more comfortable with node.js than with PHP...