chrome-web-store

Testing Chrome In App Payments

那年仲夏 提交于 2019-12-10 10:09:49
问题 I am looking to integerate IAP (https://developer.chrome.com/webstore/payments-iap) in to my extenstion but I can't seem to find a way to test payments. If I switch the env to sandbox I get and error of type "ENV_NOT_SUPPORTED_ERROR" 回答1: Quoting the docs you link: Testing purchases Prior to publishing your app to the world, you can test the In-App Payment experience by publishing it only to trusted testers. When your app is published to trusted testers, the purchase flow will proceed

Google Chrome Extension Crashes When Installed From Webstore - Need To Identify Cause of Crash

浪子不回头ぞ 提交于 2019-12-10 09:47:20
问题 I have a google chrome extension that crashes after you install it from the webstore. When installed from a local copy the extension does not crash. The crash happens when you click the tool bar icon that is added once it has been installed. The icon is supposed to load a table with URLs. Once restarted all you get is the option to recover tabs. I was hoping someone could help identify the issue of the crash or tell me how to access a crash report to see what is causing the problem. The

Cannot upload app to Chrome Web Store - “This item is not an app, please remove app section from manifest.”

試著忘記壹切 提交于 2019-12-10 09:27:55
问题 I am constantly getting this error when uploading my app: An error occurred: Failed to process your item. This item is not an app, please remove app section from manifest. This is the manifest file for my Chrome app (based on the Getting started - Hello World tutorial): { "name":"App name", "description":"app description", "version":"1.0.4", "manifest_version":2, "app":{ "background":{ "scripts":["background.js"] } }, "icons":{ "16":"icon_16.png", "18":"icon_128.png" } } I tried to install my

How long before stats and ratings display for new Chrome Extensions in Web Store? [closed]

廉价感情. 提交于 2019-12-08 17:23:00
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . Published a new extension and it's discoverable and displaying properly in the Chrome Store. Folks have told me they have installed it and gave it a rating. But, no activity displays publicly or in the developer dashboard. Am I just experiencing a normal lag or is something broken? Thanks! 回答1: In my experience,

After publishing my Google Apps app to the Chrome Webstore, it installs as an extension

拥有回忆 提交于 2019-12-07 13:07:23
问题 I've uploaded the following manifest for my Chrome Web Store submission { "manifest_version": 2, "name": "Pear Deck", "version": "0.0.0.1", "description": "for Active Classrooms", "icons": { "128": "icons/google-icon-128x128.png", "16": "icons/google-icon-32x32.png" }, "container": ["DOMAIN_INSTALLABLE", "GOOGLE_DRIVE"], "api_console_project_id": "1234567890" } I've zipped up the icons, filled out the form, and published to trusted testers (just approved). But... when my trusted tester

Speeding up the Chrome App Development Process

霸气de小男生 提交于 2019-12-06 13:22:05
Currently, my development process is: 1. zipping my code 2. uploading it at https://chrome.google.com/webstore/developer/dashboard , clicking publish 3. repeatedly clicking on "update extenstions now" at chrome://extensions/ to update the app which can take up to 60 minutes. Is there a better way to do this? Waiting upto 60 minutes make dev very slow. The official documentation shows how to use developer mode to quickly load and launch your app/extension without having to finalize a distribution package: Open chrome://extensions from the Chrome omnibox or via Settings and enable [x] Developer

chrome.webstore.install(); Not working on verified site

自古美人都是妖i 提交于 2019-12-06 13:01:03
问题 When I attempt to use the chrome.webstore.install(); function on my verified website for my chrome extension, it returns this error Installs can only be initiated by the Chrome Web Store item's verified site Even when the website is the item's verified site. I do have the link to the item in the head tag: <link rel="chrome-webstore-item" href="https://chrome.google.com/webstore/detail/oogdogaijchgbmakknkjcmimfgdpodil"> Any help would be appreciated. 回答1: if you verify ownership for a domain

How precise are Google Chrome extension statistics?

你离开我真会死。 提交于 2019-12-06 06:00:34
问题 I published a Chrome Extension, but statistics are weird. At first, I realized that it doesn't count inline installation on my custom webpage. Do you think that Total Current Users is precise? For some days I have bigger drop of Total Current Users than number of uninstallations, which is nonsense. Is there any way how to get precise statistics of total users, installations and uninstallations? 回答1: I am not sure is how precise stats in the current version of Developer Dashboard. But I know

Can't publish a Hangout app (extension)

霸气de小男生 提交于 2019-12-06 01:31:20
问题 I've created a Google Hangout extension app, tested it works privately etc and now I'm trying to publish it. I have followed the instructions here: https://developers.google.com/+/hangouts/publishing I've filled in the forms correctly, created the O-Auth client ID, filled out the consent form etc. When I tick the Make this application public tickbox and try to save, a server error message pops up along the lines of: Server Error Whoops! Our bad. Please try again. If the problem persists,

Google Chrome Extension Crashes When Installed From Webstore - Need To Identify Cause of Crash

对着背影说爱祢 提交于 2019-12-06 01:13:12
I have a google chrome extension that crashes after you install it from the webstore. When installed from a local copy the extension does not crash. The crash happens when you click the tool bar icon that is added once it has been installed. The icon is supposed to load a table with URLs. Once restarted all you get is the option to recover tabs. I was hoping someone could help identify the issue of the crash or tell me how to access a crash report to see what is causing the problem. The extension is located here: Chrome Store App Any help or direction will be very appreciated. Thank you I've