google-chrome-app

Mobile-Chrome-App not able to scroll

a 夏天 提交于 2019-12-08 19:48:30
I also have this issue. I am using Ubuntu and just completed the Hello world tutorial. I wrote some more text and I am unable to scroll. I can see where the words keep going but nothing I have tried lets it scroll. I have not made any HTML/CSS edits. I have only added more text to the <p> tag. There is some default CSS applied for chrome packaged apps. Putting the following in your CSS should re-enable scrolling: html { overflow-y:scroll; } Someone is putting together a cool guide which might have some more tips. See https://gist.github.com/maicki/7622137#scrolling Chrome apps have a default

Is there a PDF viewer to be used in a DART/Angulardart Chrome Packaged App ?

馋奶兔 提交于 2019-12-08 14:15:27
问题 I am trying to find a suitable PDF viewer to simply display PDF URLs ( external ) / or files ( after creating blobs to the external URLs) in my Chrome packaged app. Tried various things , webview/sandbox pages and using pdf.js. but no luck so far. I am able to get the PDF show up with the webview for the first time but not able to dynamically change the webview's src; as I believe there is an issue with that. Is there anyone displaying dynamic external PDF URLs in a chrome packaged app / how

How To Add Chrome App Launcher 41+ updated in to ARC Welder or Add .APK in to ARC Welder

五迷三道 提交于 2019-12-08 14:09:11
问题 I want to check my .APK file to test at ARC Welder i see this on this Link this is a Link i see here but did not get it And this link Also link How can i add ARC Welder and .APK also. how to add APKin ARC Welder. Image are here I solved here it is :- iif i press Click on WebStore then i can add Crome Web store apps but Did not install or did not get ARC Welder.here is Link Link here to add GoogleCrome web store apps. How to find bug in app or how we found bug in side of app if bug are inside

Google chrome app - easy install and launch for the user

安稳与你 提交于 2019-12-08 13:35:33
问题 Our situation: We have an existing html5 + javascript code that we want to work offline, and want to have a user folder for storing images,videos etc. We want this offline application to start another windows program with ole commands. (So let's say we want to call a .exe file that will do this work). We are thinking of doing it with a google chrome app. Questions: Is there any way to create a windows desktop launcher to start google chrome with our app? (so that the google chrome doesn't

Google Chrome extension: How to find out if a user has signed in to the Chrome browser?

天大地大妈咪最大 提交于 2019-12-08 12:52:33
问题 As part of a Google Chrome extension that I'm building I need to be able to tell if a user has signed in to the Google Chrome browser while the extension is enabled. How can I do this? Please note that using OAuth2 (and thus, the chrome.identity API) is beyond the scope of my project so I need to find another way. EDIT: my question is not a duplicate of this one because the solution in that thread no longer works. 回答1: Check if LSID cookie is set: chrome.cookies.get({url:'https://accounts

Accessing a local directory from a Chrome App

白昼怎懂夜的黑 提交于 2019-12-08 12:18:31
问题 I am working on a Chrome extension called Chrome Snippets that will allow you to inject snippets of JavaScript from files but I am having trouble accessing local directories on the user's computer. Anyone have an idea of how to accomplish this? manifest.json: { "name": "Chrome Snippets", "description": "Run JavaScript on the DOM of any web page from a library of recipes stored on your computer.", "author": "Adam Fisher", "version": "1.0", "manifest_version": 2, "default_locale": "en",

What is the process for getting a HID compliant USB device removed from ChromeOS blacklist?

寵の児 提交于 2019-12-08 12:07:23
问题 Attempting to use the chrome.hid API for a Chrome Packaged App we ran into an issue where our USB devices are in the ignore/blacklist. What is the process for ChromeOS to get all of our devices removed from the blacklist? See this post for reference: HID compliant device will not enumerate using chrome.hid API on ChromeOS 回答1: This isn't a Chrome OS specific problem. This device is in the Linux kernel's hid_ignore_list because it doesn't implement the HID protocol correctly. Given that the

Printing a page to different printers in a web app

 ̄綄美尐妖づ 提交于 2019-12-08 08:39:06
问题 I want to write a web app that can process a users presentation which when submitted, gets sent to their local system printers - one part of the order will go to B&W laser printer and another part goes to another printer for another process. Ideally, this will be able to run on any of the major systems - Linux, OSX or Windows. It could be a packaged Chrome or Firefox app or extension, but I can't tell if there is sufficient access to the system printers. (I can see all the printers available

Using AngularJS controller as content script?

坚强是说给别人听的谎言 提交于 2019-12-08 06:24:57
问题 I am injecting a file modal.html in the current tab. Now this file contains ng attributes in like ng-model and ng-controller . Now I am using my controller as a content script and inside this controller I have a chrome.runtime.onMessage.addListener() . Here are my files : manifest.json { "name": " Extension 1", "version": "0.1", "description": "Sample", "icons": { "16": "icons/icon16.png", "48": "icons/icon48.png", "128": "icons/icon128.png" }, "background": { "scripts": [ "lib/jquery/jquery

Catching “Failed to load resources” errors caused by HTML tags in a <webview>

扶醉桌前 提交于 2019-12-08 06:13:05
问题 I am loading web pages in Chrome App webviews. I sometimes get "Failed to load resource" messages in the console for some of the <script> and <img> tags. I want to catch these errors so I can act on them in JavaScript code, rather than have messages appear in the console. I can not modify the HTML that I am loading, i.e., using AJAX to load the resources rather than HTML tags is not an option. "Fixing" the resources is also not what I am looking for - I just want some JavaScript code