您的位置: 首页 > 软件大全 > 浏览器 > chromium浏览器

chromium浏览器

安全检测: 360安全卫士 360杀毒 电脑管家
  • 软件大小: 1.03MB
  • 软件类型: 浏览器
  • 软件语言: 简体中文
  • 软件授权: 免费
  • 软件评级:
  • 更新时间: 2018-11-28
扫描二维码直接到手机上看
详细信息

chromium浏览器下载_chromium浏览器官方正式版下载是一款由穀歌公司主打的網頁極速瀏覽器,瀏覽器采用多重版權的核心技術。為用戶帶來安全,穩定的使用體驗,並提供極速瀏覽拒絕卡頓,更加高效的使用工作體驗,解開用戶的網頁瀏覽環境。

功能介紹

1、Chromium瀏覽器使用了額外的Loader使配置文件與程序文件存放於同一個文件夾,適合U盤攜帶,或者經常重裝的人群。

2、能通過“設置默認瀏覽器。EXE”將瀏覽器設置為默認瀏覽器。並且設置之後在任何地方調用瀏覽器都不會出現丟失設置的情況。並且能創建桌面以及程序菜單快捷方式。不過設置默認瀏覽器之後,程序所在文件夾不能改名或者刪除;

3、優化了瀏覽器配置。附加了一些常用的瀏覽器插件。其中有一些插件默認是停用的,如果需要的話,隨時啟用即可。

4、能通過一個批處理文件“清除所有個人信息與自定義設置。bat”快速的將所有此瀏覽器的瀏覽記錄以及個人信息刪除。以便重新定制並分發給其他用戶。

5、Loader使用C語言編寫。盡量減少垃圾文件產生以及資源占用。

安裝步驟

一、在本站下載最新版的Chromium瀏覽器安裝包,雙擊打開。

二、軟件就安裝好了。

使用技巧

打開穀歌瀏覽器,左上角位置,如圖,五角星是快速收藏當前網址按鈕,點擊會提示“已添加收藏夾”,文件夾可以調整收藏的書簽位置,點擊完成即可。

chromium瀏覽器使用方法:

1.登錄Google App Engine,如果還沒有帳號,點擊注冊來申請一個帳號;

2.點擊Create Application來創建新的應用;

4.輸入一個應用名,點擊Check Availability,檢測可用後,點擊Create Application來創建應用;

6.到goagent主頁下載其最新版本

7.下載文件解壓後,使用文本編輯器打開goagent/local/proxy.ini,修改第8行的appid =為剛申請的應用名;

8.運行goagent/server/uploader.bat文件,根據提示輸入appid以及Gmail的郵箱,密碼等來進行上傳。

9.上傳完成的話,Google App Engine裏面的應用列表中,Current Version將不再是None Deployed狀態;

10.運行goagent/local/goagent.exe程序

11.運行Chrome,進行Proxy SwitchySharp插件的安裝

12.在SwitchySharp選項中,選擇導入導出分頁卡

13.在SwitchSharp選項中,選擇切換規則選項卡,點擊立即更新列表來獲得最新的自動規則列表;

14.確認SwitchySharp中設置為自動切換模式,確認goagent客戶端已運行,輸入熱門的地址,去看看外邊的世界吧。

常見問題

Q: 如何替換chromium瀏覽器中的圖標?

A: 替換srcchromepp hemechromium下面相關的圖片;

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: srcchromerowserextensionspimanagementmanagement_apitest.cc:102行

Q: 如何編譯chromium?

A: 最新的chromium(2014-03-18)已經不再支持單獨的vs編譯方式,需要用nanja或者nanja+vs的方式來編譯,具體參考這裏。

同类软件
  • 绿色浏览器
绿色浏览器 更多 >

绿色浏览器以体积小速度快而著称,可以帮助用户自动的过滤一些不良的上网信息,自动识别拦截危险的网站,软件占用内存小,同时还可以做到无痕浏览,目前很多浏览器都自带绿色、无痕上网的功能,用户可以在设置里进行更改,下面小编为大家推荐几款不错的绿色浏览器。

浏览器详情
浏览器最新