noScroll

tracking your bad scrolling habits

Was ist noScroll?

noScroll ist eine Chrome-Erweiterung, die von pierre depaz entwickelt wurde, und ihr Hauptmerkmal ist "tracking your bad scrolling habits".

Erweiterungsscreenshots

screenshot

noScroll-Erweiterungs-CRX-Datei herunterladen

Laden Sie noScroll-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name noScroll noScroll
ID phjbpbibhgfcinkkmfghfdhnipnambfm
Offizielle URL https://chromewebstore.google.com/detail/noscroll/phjbpbibhgfcinkkmfghfdhnipnambfm
Beschreibung tracking your bad scrolling habits
Dateigröße 16.84 KB
Installationsanzahl 10
Aktuelle Version 0.1
Letztes Update 2016-02-08
Veröffentlichungsdatum 2016-02-07
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler pierre depaz
Zahlungsart free
Erweiterungswebsite http://pierredepaz.net/projects/project_noscroll.html
Unterstützte Sprachen 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"
    }
}