Browse Less
The more you scroll, the more faded the page becomes. Break your browsing habit one scroll at a time.
Browse Lessคืออะไร?
Browse Less เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://dopplercreative.com และคุณลักษณะหลักของมันคือ "The more you scroll, the more faded the page becomes. Break your browsing habit one scroll at a time."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Browse Less
ดาวน์โหลดไฟล์ส่วนขยาย Browse Less ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Unlike most productivity extensions, Browse Less kindly encourages you to stop wasting your time browsing a website by fading the page as you scroll. Features: +Fade website as you scroll down +Enable/Disable on separate websites +Adjust fade amount +Auto save settings Note: This extension will only work on pages with Javascript enabled. The Chrome Web Store prevents Javascript from loading, so try it out on other websites. Version 1.0.0 - March 23, 2022 +Updated description for store page Version 0.6 - December 6, 2021 +Updated slider max value from 5 to 20 (1 = fade quickly, 20 = fade slowly) +Updated slider icon +Added error message for websites that do not allow extensions Version 0.5 - November 23, 2021 +Added slider option for custom fade amount (left = show less content, right = show more content) +Improved setting menu. Page now updates instantly when settings are changed (previously required a page refresh) Version 0.4 - April 4, 2021 +Added option to enable fading for specific pages Version 0.3 - July 10, 2019 +Changed blacklist behavior. By default, the script is disabled per site Version 0.2 - July 10, 2019 +Updated URL matching permission Version 0.1 - July 9, 2019 +Added opacity filter when scrolling +Added option to disable the script
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | cdbbbaknlcfhdjgnhemhlpemkbnfgoam |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/browse-less/cdbbbaknlcfhdjgnhemhlpemkbnfgoam |
คำอธิบาย | The more you scroll, the more faded the page becomes. Break your browsing habit one scroll at a time. |
ขนาดไฟล์ | 355 KB |
จำนวนการติดตั้ง | 486 |
เวอร์ชันปัจจุบัน | 1.0.0 |
อัปเดตครั้งล่าสุด | 2022-03-24 |
วันที่เผยแพร่ | 2019-07-20 |
คะแนน | 3.82/5 รวมทั้งหมด 11 คะแนน |
ผู้พัฒนา | https://dopplercreative.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://www.dopplercreative.com |
URL หน้านโยบายความเป็นส่วนตัว | https://www.dopplercreative.com/privacy-policy |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Browse Less", "description": "The more you scroll, the more faded the page becomes. Break your browsing habit one scroll at a time.", "version": "1.0.0", "action": { "default_popup": "www\/popup.html", "default_title": "Browse Less" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_end", "js": [ "www\/js\/main.js" ] } ], "icons": { "16": "www\/img\/icons\/icon16.png", "48": "www\/img\/icons\/icon48.png", "128": "www\/img\/icons\/icon128.png" }, "permissions": [ "activeTab", "storage" ] } |