noScroll

tracking your bad scrolling habits

noScrollคืออะไร?

noScroll เป็นส่วนขยายของ Chrome ที่พัฒนาโดย pierre depaz และคุณลักษณะหลักของมันคือ "tracking your bad scrolling habits"

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย noScroll ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        noScroll is an extension dedicated to make you notice your ubiquitous scrolling and its implications in content consumption. the more you scroll on a social network, the less things start to feel relevant / different from each other. words and images become interchangeable.

supported websites are:

facebook
twitter
instagram

noscroll is an opt-out plugin.                    

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

ชื่อ noScroll noScroll
ID phjbpbibhgfcinkkmfghfdhnipnambfm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/noscroll/phjbpbibhgfcinkkmfghfdhnipnambfm
คำอธิบาย tracking your bad scrolling habits
ขนาดไฟล์ 16.84 KB
จำนวนการติดตั้ง 10
เวอร์ชันปัจจุบัน 0.1
อัปเดตครั้งล่าสุด 2016-02-08
วันที่เผยแพร่ 2016-02-07
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา pierre depaz
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://pierredepaz.net/projects/project_noscroll.html
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "noScroll",
    "description": "tracking your bad scrolling habits",
    "version": "0.1",
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "hey look at me"
    },
    "permissions": [
        "activeTab",
        "https:\/\/ajax.googleapis.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.facebook.com\/*",
                "https:\/\/twitter.com\/*",
                "https:\/\/instagram.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "omnibox": {
        "keyword": "yeah"
    }
}