chrome-web-store

Chrome Extension won't appear by filtering in the Web Store, only by search

烂漫一生 提交于 2019-12-02 09:30:03
问题 This has bothered me for a long time, and there is no way to contact Google for support, and their documentation doesn't cover this. I think I must be missing something, but I can't for the life of me figure it out If you search for my extension manually, it shows up: https://chrome.google.com/webstore/search/mortality but if you just go to the store and apply the relevant filters https://chrome.google.com/webstore/category/extensions Extensions, Productivity, Runs Offline It doesn't show up.

Chrome Webstore inline installation with AngularJS

久未见 提交于 2019-12-02 06:24:59
问题 I'm a newbie with AngularJS and trying to install a Chrome extension following the Webstore inline installation guide In my .html file <button data-ng-click="chromeExtensionInstall()" id="install-button">Add to Chrome</button> In my .js file function successCallback () { window.alert('success'); } function failureCallback () { window.alert('failure'); } $scope.chromeExtensionInstall = function() { if (!chrome.app.isInstalled) { chrome.webstore.install('https://chrome.google.com/webstore

Chrome Webstore inline installation with AngularJS

自古美人都是妖i 提交于 2019-12-02 01:22:38
I'm a newbie with AngularJS and trying to install a Chrome extension following the Webstore inline installation guide In my .html file <button data-ng-click="chromeExtensionInstall()" id="install-button">Add to Chrome</button> In my .js file function successCallback () { window.alert('success'); } function failureCallback () { window.alert('failure'); } $scope.chromeExtensionInstall = function() { if (!chrome.app.isInstalled) { chrome.webstore.install('https://chrome.google.com/webstore/detail/...', successCallback(), failureCallback()); } }; Both alerts are displayed and then getting this

How do I link my extension to my Android app?

我与影子孤独终老i 提交于 2019-12-01 15:13:46
Chrome Web Store now shows links to Google Play for some apps and extensions: http://googlesystem.blogspot.in/2014/06/chrome-web-store-links-to-android-apps.html Can anyone suggest me the configuration that needs to be done for this? Is the integration done on our side or on the Google side? Quoting from Francois Beaufort's G+ post on this topic: If you're wondering how to get the experimental "available for Android" link on the Chrome Web Store for your Chrome App/Extension, you have to know that there is no way to enter this information into your listing at this time. However, if the item

How do I delete an extension in my Chrome developer dashboard?

大城市里の小女人 提交于 2019-12-01 14:38:31
问题 I have uploaded an extension to my dashboard but I don't want to publish it any more. The extension remained "draft" status, and I want to get it removed from the dashboard. However, I cannot find any way to do so so far. Can anyone help please? 回答1: You can't delete an extension from the Chrome developer dashboard. In the past, there was a delete button at the dashboard, but it has been removed because developers accidentally removed apps/extensions (and then tried to re-upload the app

How to test Chrome extension for auto-update feature?

一世执手 提交于 2019-12-01 01:23:44
I am about to finish my Google Chrome extension. If I'm not mistaking all Chrome apps come with a capability of auto-updating. If so, is there a way for me to test it before I submit my app to the Chrome Web Store? PS. Also do I need to account for any special conditions in my extension? Xan To test the updating procedure, it's best to submit your extension to the Web Store in a non-public fashion. As you publish an item, you have a choice of Public, Unlisted, and Trusted Testers publication. Public means that the extension will be searchable and everyone can install Unlisted means everyone

chrome.storage is undefined in chrome extension

若如初见. 提交于 2019-11-30 19:52:00
I'm developing a Google Chrome extension, and have been working on one for a while. So it's been installed for a while, and I updated the manifest file to include the "storage" permission and reloaded the extension. However, when I try it in the console, chrome.storage is undefined . I restarted Chrome and still nothing. My manifest file looks like this: { ... snip ... "permissions": [ "tabs", "http://*/*", "https://*/*", "chrome://favicon/", "storage" ] } I could reinstall the application, but I'm hesitant, since: Will it be the same for the existing users of the extension? It says in the

Chrome Web Store app install redirects to a blank page

喜夏-厌秋 提交于 2019-11-30 16:50:52
I have a Google Apps Marketplace app with a Chrome Web Store entry. When installing the app from the Web Store using Chrome browser I always get redirected to a blank page with this URL: https://apis.google.com/additnow/signin.html?applicationid=1234567890&callback=true&parenturl=https://chrome.google.com This page comes after the OAuth permissions request page, and only appears when installing from Chrome browser. The app installs correctly though, I can see it in the Google Admin console and I am able to use it properly. This is the Chrome Web Store manifest: { "manifest_version": 2, "name":

API call for user count in Chrome Web Store? [closed]

回眸只為那壹抹淺笑 提交于 2019-11-30 13:22:47
I have an extension in the Chrome Web Store and I like knowing roughly how many people are using it via the "N users" and ratings on its page . However, I don't really like loading the whole "product" page just to see a couple of numbers and thought I'd try to make a little widget that would display it instead. However, I can't find any API documentation for the Chrome Web Store. I would a call like /webstore/api/v1/appid.json to exist, but the closest things I've found in searching only concern the Licensing API . Is there an official Chrome Web Store API for user metrics? This is no such API

Chrome Web Store app install redirects to a blank page

為{幸葍}努か 提交于 2019-11-30 00:52:09
问题 I have a Google Apps Marketplace app with a Chrome Web Store entry. When installing the app from the Web Store using Chrome browser I always get redirected to a blank page with this URL: https://apis.google.com/additnow/signin.html?applicationid=1234567890&callback=true&parenturl=https://chrome.google.com This page comes after the OAuth permissions request page, and only appears when installing from Chrome browser. The app installs correctly though, I can see it in the Google Admin console