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 |
公式URL | 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 |
Eメール | [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" } } |