noScroll
tracking your bad scrolling habits
noScroll란 무엇입니까?
noScroll은(는) pierre depaz에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "tracking your bad scrolling habits"입니다.
확장 프로그램 스크린샷
noScroll 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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" } } |