Reload
A simple Reload button
什麼是Reload?
Reload是由MK開發的Chrome擴展程式,該擴展的主要功能是“A simple Reload button”。
擴展截圖
下載Reload擴展crx文件
下載Reload擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
A simple Reload button, for those who want one to the right of the Address Bar. (Stop function not included; see below.) To save RAM, the extension uses an event page rather than a persistent background page. Hopefully it won't lag during heavy disk access. For a Stop button, see: https://chrome.google.com/webstore/detail/stop/kkeehnmfddjhlojogndpeaklfhaokkbn *** Changelog 0.4: Updated icons to match Chrome's new Material theme. 0.3: Removed "tabs" permission. Turns out it isn't needed to call chrome.tabs.reload.
擴展基本資訊
名稱 | Reload |
ID | fcofhoajikoooeongdbjbgnjpmgehgja |
官方網址 | https://chromewebstore.google.com/detail/reload/fcofhoajikoooeongdbjbgnjpmgehgja |
簡介 | A simple Reload button |
檔案大小 | 7.57 KB |
安裝次數 | 1,852 |
目前版本 | 0.4 |
更新時間 | 2021-01-15 |
上架時間 | 2016-11-19 |
評分 | 4.32/5 共 22 次評分 |
開發者 | MK |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Reload", "description": "A simple Reload button", "version": "0.4", "manifest_version": 2, "icons": { "16": "reload_16.png", "24": "reload_24.png", "32": "reload_32.png", "48": "reload_48.png", "128": "reload_128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_icon": { "16": "reload_16.png", "24": "reload_24.png", "32": "reload_32.png" }, "default_title": "Reload" } } |