Procrastination Alert
Gentle reminders displayed on YouTube, Facebook and Twitter to help you beat procrastination.
什麼是Procrastination Alert?
Procrastination Alert是由Simon Li開發的Chrome擴展程式,該擴展的主要功能是“Gentle reminders displayed on YouTube, Facebook and Twitter to help you beat procrastination.”。
擴展截圖
下載Procrastination Alert擴展crx文件
下載Procrastination Alert擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
We often spend more time mindlessly browsing YouTube, Facebook and Twitter than we want to. This extension shows you gentle reminders on those websites after 25 minutes (or a customized amount of time) to help you get back to work and avoid procrastination.
擴展基本資訊
名稱 | Procrastination Alert |
ID | icimifdanbeeibnjegkbeeppepnljhbi |
官方網址 | https://chromewebstore.google.com/detail/procrastination-alert/icimifdanbeeibnjegkbeeppepnljhbi |
簡介 | Gentle reminders displayed on YouTube, Facebook and Twitter to help you beat procrastination. |
檔案大小 | 14.67 KB |
安裝次數 | 46 |
目前版本 | 1.0 |
更新時間 | 2020-11-25 |
上架時間 | 2020-11-25 |
評分 | 4.00/5 共 1 次評分 |
開發者 | Simon Li |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Procrastination Alert", "version": "1.0", "description": "Gentle reminders displayed on YouTube, Facebook and Twitter to help you beat procrastination.", "manifest_version": 2, "icons": { "16": "icon-16.png", "32": "icon-32.png", "64": "icon-64.png", "128": "icon-128.png" }, "browser_action": { "default_icon": "icon-32.png", "default_title": "Procrastination Alert", "default_popup": "popup.html" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*", "*:\/\/twitter.com\/*", "*:\/\/www.facebook.com\/*" ], "js": [ "script.js" ], "css": [ "styles.css" ] } ] } |