Tab auto reloader
This extension reloads the current tab at a chosen interval.
什麼是Tab auto reloader?
Tab auto reloader是由https://denilson.sa.nom.br開發的Chrome擴展程式,該擴展的主要功能是“This extension reloads the current tab at a chosen interval.”。
擴展截圖
下載Tab auto reloader擴展crx文件
下載Tab auto reloader擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This Chrome extension reloads (refreshes) the current tab at a chosen interval.
* Free and open-source.
* No (extra) permissions required.
* Easy-to-use.
* The reload (refresh) interval can be different for each tab.
https://github.com/denilsonsa/crx-reload-tab/ 擴展基本資訊
| 名稱 | |
| ID | knnahnemielbnanghaphjgheamgcjjcb |
| 官方網址 | https://chromewebstore.google.com/detail/tab-auto-reloader/knnahnemielbnanghaphjgheamgcjjcb |
| 簡介 | This extension reloads the current tab at a chosen interval. |
| 檔案大小 | 14.36 KB |
| 安裝次數 | 26,500 |
| 目前版本 | 1.1 |
| 更新時間 | 2020-11-19 |
| 上架時間 | 2018-04-23 |
| 評分 | 4.90/5 共 99 次評分 |
| 開發者 | https://denilson.sa.nom.br |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/denilsonsa/crx-reload-tab/ |
| 說明頁面URL | https://github.com/denilsonsa/crx-reload-tab/issues |
| 隱私政策頁面URL | http://denilson.sa.nom.br/privacy.html |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Tab auto reloader",
"short_name": "Tab reloader",
"description": "This extension reloads the current tab at a chosen interval.",
"version": "1.1",
"homepage_url": "https:\/\/github.com\/denilsonsa\/crx-reload-tab\/",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"browser_action": {
"default_icon": {
"19": "icon19.png",
"38": "icon38.png"
},
"default_popup": "popup.html",
"default_title": "Reload this page every\u2026"
},
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"permissions": [
"contextMenus",
"storage"
]
} | |