noScroll

tracking your bad scrolling habits

Co to jest noScroll?

noScroll to rozszerzenie Chrome opracowane przez pierre depaz, a jego główną funkcją jest „tracking your bad scrolling habits”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia noScroll

Pobierz pliki rozszerzeń noScroll w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa noScroll noScroll
ID phjbpbibhgfcinkkmfghfdhnipnambfm
Oficjalny URL https://chromewebstore.google.com/detail/noscroll/phjbpbibhgfcinkkmfghfdhnipnambfm
Opis tracking your bad scrolling habits
Rozmiar pliku 16.84 KB
Liczba instalacji 10
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2016-02-08
Data Publikacji 2016-02-07
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper pierre depaz
Typ Płatności free
Strona Rozszerzenia http://pierredepaz.net/projects/project_noscroll.html
Obsługiwane Języki 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"
    }
}