full keyboard controls when running ubuntu shell in chromeos tab - google-chrome

when running ubuntu cli in a tab (a chrome tab in chrome os) using crouton, i can't press control w to search in the nano text editor. It triggers the close window command instead for chrome. How can I disable this? With a GUI installed for Ubuntu, I can run the program full screen and get total keyboard command capture. Is this impossible when running in a Chrome tab? Is there any way to get the cli out of the chrome tab?

Chrome OS Download 'Crouton integration Extension' from Google Store
Chrome OS Download crouton from bottom link of Francois Beaufort
Chrome OS Open CROSH ...type crt + alt + t
Chrome OS type shell
Chrome OS type: sudo sh ~/Downloads/crouton -r trusty -t unity,extension
Chrome OS type: sudo startunity
Info & Links https://plus.google.com/+FrancoisBeaufort/posts/JDVkXALPcNq

Related

How to disable CORS in chrome to work with localhost and third party url on window 11 Chrome

I want to access https://third-party-url/ from my localhost But chrome is throwing cors error
I am using window 11 and chrome version : Version 106.0.5249.103 which is latest version till 2022-10-10
Run cmd from Chrome's path.
chrome.exe --disable-web-security --disable-gpu --user-data-dir=~/chromeTemp
This command is only disable cors in the window that opens after running the command. If you close this window, you can use the same command again.

Brackets - Live Preview in chrome even after brackets was uninstalled

I uninstalled Brackets from Ubuntu 16.04 using the commands:
$ sudo apt-get remove brackets
$ sudo add-apt-repository --remove ppa:webupd8team/brackets
But now whenever I try to open google chrome, it opens the following window:
And even the name of the application got changed from Google Chrome to Bootstrap Images - Google Chrome:
I was building a website using Bootstrap which the explains the reason behind the new name.
Now whenever I open a HTML file, it always opens the live preview window on the first tab.
I can open google chrome normally when I type in the terminal:
$ google-chrome-stable
How can I fix this?
P.S. I already tried reinstalling chrome.
To remove the brackets live preview integration you need to update this file
~/.local/share/applications/chrome.desktop
The file will have the following line -
Exec=/opt/google/chrome/chrome --user-data-dir=/home/<user>/.config/Brackets/live-dev-profile/Default/ --no-first-run --no-default-browser-check --disable-default-apps --allow-file-access-from-files --temp-profile file:///opt/Brackets/LiveDevelopment/launch.html
Which is basically the command that is run for starting chrome.
Remove the--user-data-dir and file:///opt/Brackets/LiveDevelopment/launch.html plus any other options that you don't need and then start chrome.
Chrome should open without the Brackets live integration.

How to find cache information in chrome?

I want to know where the cached information stored from url: chrome://cache in chrome browser.
where can I get it?
Link cache in chrome
you can find your Chrome temporary files:
Windows:
Windows Vista: C:\Users[USERNAME]\AppData\Local\Google\Chrome\
Windows XP: C:\Documents and Settings[USERNAME]\Local Settings\Application Data\Google\Chrome\
Windows 7/8: C:\Users[USERNAME]\AppData\Local\Google\Chrome\User Data\Default\Cache
Mac OS X:
Open finder, hit Command+Shift+G, and type in /Users/[USERNAME]/Library/Caches/Google/Chrome/
and you can download chrome cash viewer from here
In addition to #wael-mohamed's answer,
in mac
goto
$ cd /Users/{user}/Library/Caches/Google
replace the {search-text} below with what you are searching
$ grep -r "{search-text}" Chrome

How to test google chrome workspaces on linux?

I saw this two videos
http://www.youtube.com/watch?v=kVSo4buDAEE
http://www.youtube.com/watch?v=x6qe_kVaBpg
and I wanted to try google workspaces on my linux desktop
I followed these instructions: https://plus.google.com/+GoogleChromeDevelopers/posts/644qQuBKZeL
And this detailed tutorial: http://devcoma.blogspot.it/2013/01/how-to-enable-workspace-experiment-on.html
But the "File system folders in Sources Panel" won't show up
I tried with "Chromium Version 25.0.1364.160 Ubuntu 13.04 (25.0.1364.160-0ubuntu3)"
and also with "Chrome Version 29.0.1530.2 dev"
(I installed this dev version from http://www.chromium.org/getting-involved/dev-channel)
Anybody had any luck whith this?
I found the way to test it.
These are the steps I had to follow
Install a ppa with a more recent chromium version, from here:
http://www.webupd8.org/2012/09/new-chromium-stable-and-development.html
sudo add-apt-repository ppa:a-v-shkop/chromium-dev
sudo apt-get update
sudo apt-get install chromium-browser
as of today it install Version 27.0.1453.6 Ubuntu 13.04 (191032)
Open the browser and in the url bar enter chrome://flags/
enabled "Enable Developer Tools experiments."
restart the browser
open the web page you want to debug using workspaces
press F12 to open the dev tool
press F1 to open the settings panel
go to Experiments and check "File system folders in Sources Panel"
restart browser
in your file system, add a file named .allow-devtools-edit
cd
touch .allow-devtools-edit
once again, press F12, F1, and select Workspace, add folder, and add the root of your project
to map your web site to your file system, right click on any js file and select 'Map to network resource', then choose the corresponding file
and that's it, in the Workspace section of your Settings, you will see that a mapping has been added, with something like
'http://localhost:9000' -> '/home/opensas/dev/apps/my_js_project'
The good news is that it seems that with the latest Google Chrome development version everything works out of the box, no need to mess around with development or experimental features.
This question is a duplicate for this one
In the Dev-channel version things were changed a bit.
So you don't need to enable devtools experiments
and don't need to manually create .allow-devtools-edit

How to Set Path for Chromium Browser in SublimeText2's Slidebar Enhancement Plugin In Ubuntu?

For Running PHP in SublimeText2 I Installed Slidebar Enhancement Plugin & PHPCodeSniff Plugin.
But When I Try to Run By Pressing F12.It Gives Pop-up "Browser 'Chrome' not found.If Installed? Which Location?'
On Right Click of Any/File Folder Open With..Application...I Opened File"Side Bar.sublime-menu"
Here SetupPath For Windows Given. But How to Setup it In Ubuntu?
like, "application": "C:\Documents and Settings\tito\ConfiguraciĆ³n local\Datos de programa\Google\Chrome\Application\chrome.exe",
But How To Set Path For Chromium in Ubuntu?
To get the path of Chromium on Ubuntu open a terminal window and type:
whereis chromium-browser
Most likely you need the path starting from /usr/bin. In my case: /usr/bin/chromium-browser.