noScroll
tracking your bad scrolling habits
noScroll là gì?
noScroll là một tiện ích mở rộng Chrome được phát triển bởi pierre depaz, và tính năng chính của nó là "tracking your bad scrolling habits".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng noScroll
Tải xuống các tệp mở rộng noScroll dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | noScroll |
ID | phjbpbibhgfcinkkmfghfdhnipnambfm |
URL Chính Thức | https://chromewebstore.google.com/detail/noscroll/phjbpbibhgfcinkkmfghfdhnipnambfm |
Mô tả | tracking your bad scrolling habits |
Kích Thước Tệp | 16.84 KB |
Số Lần Cài Đặt | 10 |
Phiên Bản Hiện Tại | 0.1 |
Cập Nhật Lần Cuối | 2016-02-08 |
Ngày Phát Hành | 2016-02-07 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | pierre depaz |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://pierredepaz.net/projects/project_noscroll.html |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |