noScroll

tracking your bad scrolling habits

Cos'è noScroll?

noScroll è un'estensione di Chrome sviluppata da pierre depaz, e la sua funzione principale è "tracking your bad scrolling habits".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione noScroll

Scarica i file di estensione noScroll in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome noScroll noScroll
ID phjbpbibhgfcinkkmfghfdhnipnambfm
URL Ufficiale https://chromewebstore.google.com/detail/noscroll/phjbpbibhgfcinkkmfghfdhnipnambfm
Descrizione tracking your bad scrolling habits
Dimensione del File 16.84 KB
Conteggio Installazioni 10
Versione Corrente 0.1
Ultimo Aggiornamento 2016-02-08
Data di Pubblicazione 2016-02-07
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore pierre depaz
Tipo di Pagamento free
Sito Web dell'Estensione http://pierredepaz.net/projects/project_noscroll.html
Lingue Supportate 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"
    }
}