Twitter Timer
This timer sets the displayable time of Twitter. When the set time elapses, the tab closes without permission.
什麼是Twitter Timer?
Twitter Timer是由Haruya Nakamura開發的Chrome擴展程式,該擴展的主要功能是“This timer sets the displayable time of Twitter. When the set time elapses, the tab closes without permission.”。
擴展截圖
下載Twitter Timer擴展crx文件
下載Twitter Timer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
【To you who want to break out of Twitter】 This extension gives people who just watch too much Twitter time to concentrate on their work. If you want to stop watching Twitter, try setting this extension. When you open the Twitter site (twitter.com), this extension will automatically close Twitter open tabs after a set amount of time.
擴展基本資訊
名稱 | Twitter Timer |
ID | dbpliifabeopadfiaejlchjmdonpgdne |
官方網址 | https://chromewebstore.google.com/detail/twitter-timer/dbpliifabeopadfiaejlchjmdonpgdne |
簡介 | This timer sets the displayable time of Twitter. When the set time elapses, the tab closes without permission. |
檔案大小 | 1.03 MB |
安裝次數 | 60 |
目前版本 | 2 |
更新時間 | 2020-03-30 |
上架時間 | 2020-03-26 |
開發者 | Haruya Nakamura |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_name__", "short_name": "__MSG_short_name__", "version": "2", "manifest_version": 2, "description": "__MSG_description__", "default_locale": "en", "icons": { "16": "icon\/icon16.png", "48": "icon\/icon48.png", "128": "icon\/icon128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "script.js" ] } ], "background": { "scripts": [ "backend.js" ] }, "permissions": [ "tabs", "storage" ], "options_ui": { "page": "options.html", "chrome_style": true }, "browser_action": { "default_popup": "options.html" } } |