Stop

A simple Stop button

Stopคืออะไร?

Stop เป็นส่วนขยายของ Chrome ที่พัฒนาโดย MK และคุณลักษณะหลักของมันคือ "A simple Stop button"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Stop

ดาวน์โหลดไฟล์ส่วนขยาย 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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ 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"
    ]
}