noScroll

tracking your bad scrolling habits

什么是noScroll?

noScroll是由pierre depaz开发的Chrome扩展程序,该扩展的主要功能是“tracking your bad scrolling habits”。

扩展截图

screenshot

下载noScroll扩展crx文件

下载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"
    }
}