- Green versionCheck
- Green versionCheck
- Green versionCheck
- Green versionCheck
Function introduction
1. The Chromium browser uses an additional Loader to store the configuration files and program files in the same folder, which is suitable for people who carry U disks or frequently reinstall.
2. You can set the browser as the default browser through "Set Default Browser.EXE". And after setting it, you will not lose the settings when you call the browser anywhere. And can create desktop and program menu shortcuts. However, after setting the default browser, the folder where the program is located cannot be renamed or deleted;
3. Optimized browser configuration. Some commonly used browser plug-ins are attached. Some of these plug-ins are disabled by default and can be enabled at any time if needed.
4. You can quickly delete all browsing records and personal information of this browser through a batch file "Clear all personal information and custom settings.bat". to be re-customized and distributed to other users.
5. Loader is written in C language. Minimize the generation of junk files and resource usage.
FAQ
Q: How to replace the icon in chromium browser?
A: Replace the relevant pictures under srcchromeappthemechromium;
Q: What types of chrome applications can be divided into?
A:
case Manifest::TYPE_EXTENSION:
case Manifest::TYPE_THEME:
case Manifest::TYPE_USER_SCRIPT:
case Manifest::TYPE_HOSTED_APP:
case Manifest::TYPE_LEGACY_PACKAGED_APP:
case Manifest::TYPE_PLATFORM_APP:
case Manifest::TYPE_SHARED_MODULE:
Q: In what ways can the extension be loaded?
A:
// What an extension was loaded from.
// NOTE: These values are stored as integers in the preferences and used
// in histograms so don't remove or reorder existing items. Just append
// to the end.
enum Location {
INVALID_LOCATION,
INTERNAL, // A crx file from the internal Extensions directory.
EXTERNAL_PREF, // A crx file from an external directory (via prefs).
EXTERNAL_REGISTRY, // A crx file from an external directory (via eg the
// registry on Windows).
UNPACKED, // From loading an unpacked extension from the
// extensions settings page.
COMPONENT, // An integral component of Chrome itself, which
// happens to be implemented as an extension. We don't
// show these in the management UI.
EXTERNAL_PREF_DOWNLOAD, // A crx file from an external directory (via
// prefs), installed from an update URL.
EXTERNAL_POLICY_DOWNLOAD, // A crx file from an external directory (via
// admin policies), installed from an update URL.
COMMAND_LINE, // --load-extension.
EXTERNAL_POLICY, // A crx file from an external directory (via admin
// policies), cached locally and installed from the
// cache.
EXTERNAL_COMPONENT, // Similar to COMPONENT in that it's considered an
// internal implementation detail of chrome, but
// installed from an update URL like the *DOWNLOAD ones.
NUM_LOCATIONS
};
An extension that's installed automatically is known as an external extension. Google Chrome supports two ways of installing external extensions:
Using a preferences JSON file (Mac OS X and Linux only)
Using the Windows registry (Windows only)src/chrome/common/extensions/docs/templates/articles/external_extensions.html
Q: 以什么理由来通知系统我们需要通过本地安装呢?
A:
enum OffStoreInstallAllowReason {
OffStoreInstallDisallowed,
OffStoreInstallAllowedFromSettingsPage,
OffStoreInstallAllowedBecausePref,
OffStoreInstallAllowedInTest,
NumOffStoreInstallAllowReasons
};
扩展默认安装示例
A: srcchromebrowserextensionsapimanagementmanagement_apitest.cc:102行
Q: 如何编译chromium?
A: 最新的chromium(2014-03-18)已经不再支持单独的vs编译方式,需要用nanja或者nanja+vs的方式来编译,具体参考这里。
安装步骤
一、在本站下载最新版的Chromium浏览器安装包,双击打开。
二、软件就安装好了。
使用技巧
打开谷歌浏览器,左上角位置,如图,五角星是快速收藏当前网址按钮,点击会提示“已添加收藏夹”,文件夹可以调整收藏的书签位置,点击完成即可。
it works
it works
it works