chrome-web-store

Several problems with icons during Chrome Extension development

隐身守侯 提交于 2019-12-18 04:21:58
问题 It's very strange. 1 problem If I add this icon declaration to my manifest: "icons": { "16": "images/icon16.png", "48": "images/icon48.png", "128": "images/icon128.png" }, Then, when I add Extension through "Load unpacked extensions ... " it doesn't show logo But if you try to delete it, it does show AND! If I delete "48" line from manifect, it starts showing it right away. Maybe it's because I use Chrome Beta (Version 28.0.1500.20 beta) or maybe because I do something wrong. Seconds problem

How are Chrome Extension's weekly users counted? Is it the number of users who have it installed? Or the one's clicking on popup?

末鹿安然 提交于 2019-12-17 16:42:09
问题 Just wondering what is meant by "Weekly users" in Chrome Webstore? Is it the number of users who have clicked on the popup? Or does it also count if the users are just browsing while the Content Script is at work? What happens if an extension uses both content script and popup? 回答1: According to Joe Marini (lead Developer relations for Chrome apps/extensions/CWS): The number [of weekly users] you see in the Chrome Web Store is the amount of users whose Chrome browser has checked for an update

How to convert/update already published legacy packaged app into new version of packaged app?

倾然丶 夕夏残阳落幕 提交于 2019-12-13 07:05:33
问题 I published a packaged app years ago. Now, Google introduces a new packaged apps concept and all published packaged apps are recognized as legacy. I've aligned my application with the new concept but when I'm trying publish the app to Chrome Store it always fails on: An error occurred: Item type may not be changed after initial upload. Is there a way how to convert/update an existing packaged app on new concept? 回答1: At the moment there is no way to change the type. Note that new-style

Detect when Chrome extension was installed, without inline installation

自闭症网瘾萝莉.ら 提交于 2019-12-12 10:22:02
问题 How can an open tab get notified that a Chrome extension has just been installed, when the installation was done through the Chrome Web Store instead of inline-installation? Context Since June 2018 and onwards Chrome has deprecated inline installation hence the following mechanism to get notified if extension was installed won't work from now on: chrome.webstore.install(url, successCallback, failureCallback) From now on extensions must be installed only via the Web Store. We've built a screen

What is the method the Chrome Web Store uses to launch an application?

血红的双手。 提交于 2019-12-12 07:04:01
问题 I'm just wondering how the Chrome Web Store is implemented. There is a web site that has an option to LAUNCH APP . What happens when that button is clicked. How does it go about launching the extension? You can find the Chrome Signal Application here 回答1: Chrome uses an internal extension to grant special permissions to that page (namely "webstorePrivate" and "management"). There's not much to it in Chrome proper: The manifest for webstore_app is at https://cs.chromium.org/chromium/src/chrome

How to publish HTML5 game in Chrome Web Store

佐手、 提交于 2019-12-11 05:19:06
问题 I have my HTML5 game hosted in www.mygame.com and I followed on this doc the result show only visit website button in Chrome web store: The question is how to add my game shortcut in chrome://apps/ and when users click on game icon will link to www.mygame.com This is my manifest.json : { "manifest_version": 2, "name": "Math Booster", "description": "Try to solve basic math in short time", "version": "1.1", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "app": {

Sheets add-on Chrome Web Store to G suite migration: Change visibility?

风流意气都作罢 提交于 2019-12-11 04:12:34
问题 I have a sheets add-on currently accessible only to a specified group of users through the Chrome Web Store. Google recently let it be known that they are moving all add-ons from the Chrome Web Store to the G suite marketplace and posted directions to do this here. All the settings from the Chrome Web Store listing were imported with the exception of the 'visibility' settings below. It was defaulted to 'public' without the ability to change to private or select a Google Group as the Chrome

Google Chrome automatically disables my extension

和自甴很熟 提交于 2019-12-11 03:50:43
问题 I have an extension published in the Chrome Store which some users reported as being disabled without their knowledge. The users of the extension can install it from either the Chrome Store or from our homepage using inline installation. My guess is that there is a of problem relating to the inline installation method, but I'm not sure. Has anyone experienced this kind of behavior? Note: I know Google Chrome disabled hosted 3rd party extensions but as stated we use inline installation. 来源:

Is it possible to upload/publish an unlisted extension via the chrome webstore api?

北慕城南 提交于 2019-12-10 20:06:14
问题 We are hoping to upload a chrome extension and publish it as unlisted (as the visibility option) via the Chrome Webstore Api. So far we have been able to upload but not publish using this documentation -- we can't publish because extensions have a whole bunch of required parameters (like a screenshot or small-tile image) which we can't figure out how to attach. We are really hoping that one of these parameters will be visibility, and we can set it to "unlisted". If any kind soul has any

“Register in Chrome Web Store” not showing in Google script editor

眉间皱痕 提交于 2019-12-10 10:25:48
问题 I am trying to publish a script (called "Paypal store" in the scripts gallery) as a web app in Chrome Web Store, but the item "Register in Chrome Web Store" is not showing in the "Publish" menu of the Google script editor (the only items present in this menu are "Publish to gallery" and "Deploy as web app"). What can I do? 回答1: The "Register in Chrome Web Store" option only shows up for standalone scripts, not scripts contained in spreadsheets. Take a look here for more. 来源: https:/