Stop

A simple Stop button

Stop란 무엇입니까?

Stop은(는) MK에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A simple Stop button"입니다.

확장 프로그램 스크린샷

screenshot

Stop 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Stop Stop
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
이메일 [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"
    ]
}