-
Notifications
You must be signed in to change notification settings - Fork 6
ChromeInstall
cielavenir edited this page May 11, 2015
·
1 revision
- This depends on --user-agent= command line option.
- It doesn't use background webRequest.
- Background manifest.json syntax has changed from v2, but browserUA doesn't use it.
- Since manifest.json is compatible with v1, it works even on very old Chromium (maybe from 1.0).
- From Chromium 17, you can use
Developer Tools->Below-Right Gear icon->Override User Agent
.- memo: defautlt values are in /opt/google/chrome/resources.pak, but how to edit it?
- Your Chromium version must be 18 or later.
- filesystem edition requires Chromium 20 or later.
- 1.4.x or below worked on Chromium 17, but no longer, for I use manifest.json version 2.
edition | first version | officially supported until | config |
---|---|---|---|
ctouch_standard | 1.2.0.20430 | 1.8.5.20917 | Stored to session storage. Reload issue due to asynchronous load. |
ctouch_fixed | 1.4.0.20515 | 1.8.5.20917 | Hard-coded; not modifiable. |
ctouch_external | 1.5.0.20607 |
until ctouch_true is released |
Stored to external web server. Not standalone. Now more stable. |
ctouch_browserua | 1.5.9.20706 | N/A (shared with Safari version) | Configured via --user-agent=... or Developer Tool. No GUI. |
ctouch_filesystem | 1.8.3.20916 | until ctouch_true is released | Stored to HTML5 filesystem. Currently the most stable. |
ctouch_true (not released) | TBA | N/A |
(In the future) Synchronously loaded from Background localStorage. Per-tab setting will be added. |
- reload issue = browser continue reloads until the asynchronous config load is done.
- This issue will be fixed after synchronous config load scheme is available.
- ctouch_browserua is identical to Safari version. Actually
*
.js are shared in source tree.
- Windows: prepare AN HTTPD. launch daemon with port=12380, docroot=the same as ctouch_external.cgi
- CGI ext=".cgi", path="--self--", "execute also in general path (outside cgi-bin) (一般パスでも実行する)", "launch as EXE (EXE形式の実行)"
- From 2012 Jul 8, ctouch_external.exe is compiled using -mwindows, so much stabler. You don't have to struggle with black screen anymore.
- You can still use ctouch_webrick.rb. If so, modify :DocumentRoot => "C:/path/to/ctouch_external_folder".
- Please note you don't need CGI if you use ctouch_webrick.rb.
-
ChromeInstallEasy