功能介紹
1、Chromium瀏覽器使用了額外的Loader使配置文件與程序文件存放于同一個文件夾,適合U盤攜帶,或者經常重裝的人群。
2、能通過“設置默認瀏覽器。EXE”將瀏覽器設置為默認瀏覽器。并且設置之后在任何地方調用瀏覽器都不會出現丟失設置的情況。并且能創建桌面以及程序菜單快捷方式。不過設置默認瀏覽器之后,程序所在文件夾不能改名或者刪除;
3、優化了瀏覽器配置。附加了一些常用的瀏覽器插件。其中有一些插件默認是停用的,如果需要的話,隨時啟用即可。
4、能通過一個批處理文件“清除所有個人信息與自定義設置。bat”快速的將所有此瀏覽器的瀏覽記錄以及個人信息刪除。以便重新定制并分發給其他用戶。
5、Loader使用C語言編寫。盡量減少垃圾文件產生以及資源占用。
FAQ
Q: 如何替換chromium瀏覽器中的圖標?
A: 替換srcchromeappthemechromium下面相關的圖片;
Q: chrome應用可以分為哪些類型?
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: extension是可以通過哪些發方式來加載?
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瀏覽器安裝包,雙擊打開。
二、軟件就安裝好了。
使用技巧
打開谷歌瀏覽器,左上角位置,如圖,五角星是快速收藏當前網址按鈕,點擊會提示“已添加收藏夾”,文件夾可以調整收藏的書簽位置,點擊完成即可。
您的評論需要經過審核才能顯示
有用
有用
有用