Stop
A simple Stop button
Stopとは何ですか?
StopはMKによって開発されたChromeの拡張機能で、その主な機能は「A simple Stop button」です。
拡張機能のスクリーンショット
Stop拡張機能のCRXファイルをダウンロード
Stop拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
A simple Stop button, for those who want one to the right of the Address Bar.
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 Reload button, see:
https://chrome.google.com/webstore/detail/reload/fcofhoajikoooeongdbjbgnjpmgehgja
***
Changelog
0.5: Updated icons to match Chrome's new Material theme.
0.4: Replaced scary permission with "activeTab". Consequently, minimum Chrome version bumped to 26.
0.3: Removed "tabs" permission. Turns out it isn't needed to call chrome.tabs.executeScript. 拡張機能の基本情報
| 名前 | |
| ID | kkeehnmfddjhlojogndpeaklfhaokkbn |
| 公式URL | https://chromewebstore.google.com/detail/stop/kkeehnmfddjhlojogndpeaklfhaokkbn |
| 説明 | A simple Stop button |
| ファイルサイズ | 5.85 KB |
| インストール数 | 322 |
| 現在のバージョン | 0.5 |
| 最終更新日 | 2021-01-15 |
| 公開日 | 2016-11-19 |
| 評価 | 3.75/5 合計 4 レビュー |
| 開発者 | MK |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Stop",
"description": "A simple Stop button",
"version": "0.5",
"manifest_version": 2,
"minimum_chrome_version": "26",
"icons": {
"16": "stop_16.png",
"24": "stop_24.png",
"32": "stop_32.png",
"48": "stop_48.png",
"128": "stop_128.png"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"browser_action": {
"default_icon": {
"16": "stop_16.png",
"24": "stop_24.png",
"32": "stop_32.png"
},
"default_title": "Stop"
},
"permissions": [
"activeTab"
]
} | |