Speed Tweaks
Speed up your browser with few tweaks via toolbar popup!
什麼是Speed Tweaks?
Speed Tweaks是由Yubi開發的Chrome擴展程式,該擴展的主要功能是“Speed up your browser with few tweaks via toolbar popup!”。
擴展截圖
下載Speed Tweaks擴展crx文件
下載Speed Tweaks擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Speed Tweaks is an addon that helps you speed up your browser by using a few different tweaks. Simply open the toolbar popup and mark the desired item(s). Please note that none of the tweaks are selected by default.
Currently, there are 7 tweaks available for this addon:
1. Blocking most common ads.
2. DNS pre-fetching.
3. Blocking images from loading.
4. Speed-up rendering on page-scroll.
5. Loading mobile version of sites.
6. Discarding all inactive tabs from memory.
7. Clearing the browser's cache.
Note 1: depending on your browser version and platform, this addon might behave differently.
Note 2: to report bugs, please fill out the bug report form on the addon's homepage (https://mybrowseraddon.com/speed-tweaks.html). 擴展基本資訊
| 名稱 | |
| ID | afebilemcaepdkmhmibgmnpfppnjimjf |
| 官方網址 | https://chromewebstore.google.com/detail/speed-tweaks/afebilemcaepdkmhmibgmnpfppnjimjf |
| 簡介 | Speed up your browser with few tweaks via toolbar popup! |
| 檔案大小 | 50.57 KB |
| 安裝次數 | 7,058 |
| 目前版本 | 0.1.6 |
| 更新時間 | 2024-02-15 |
| 上架時間 | 2018-09-29 |
| 評分 | 4.28/5 共 25 次評分 |
| 開發者 | Yubi |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://mybrowseraddon.com/speed-tweaks.html |
| 說明頁面URL | https://mybrowseraddon.com/speed-tweaks.html |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"version": "0.1.6",
"manifest_version": 3,
"name": "Speed Tweaks",
"host_permissions": [
"*:\/\/*\/*"
],
"homepage_url": "https:\/\/mybrowseraddon.com\/speed-tweaks.html",
"description": "Speed up your browser with few tweaks via toolbar popup!",
"commands": {
"_execute_action": []
},
"background": {
"service_worker": "background.js"
},
"web_accessible_resources": [
{
"matches": [
"*:\/\/*\/*"
],
"resources": [
"data\/content_script\/tweaks\/scroll.js",
"data\/content_script\/tweaks\/scroll.css"
]
}
],
"permissions": [
"storage",
"privacy",
"browsingData",
"notifications",
"declarativeNetRequest"
],
"action": {
"default_title": "Speed Tweaks",
"default_popup": "data\/popup\/popup.html",
"default_icon": {
"16": "data\/icons\/16.png",
"32": "data\/icons\/32.png",
"48": "data\/icons\/48.png",
"64": "data\/icons\/64.png"
}
},
"content_scripts": [
{
"all_frames": true,
"matches": [
"*:\/\/*\/*"
],
"run_at": "document_start",
"js": [
"data\/content_script\/inject.js"
]
}
],
"icons": {
"16": "data\/icons\/16.png",
"32": "data\/icons\/32.png",
"48": "data\/icons\/48.png",
"64": "data\/icons\/64.png",
"128": "data\/icons\/128.png"
}
} | |