Quick History
This Chrome extension allows users to view the history of the current active tab in their browser.
什么是Quick History?
Quick History是由probukdev开发的Chrome扩展程序,该扩展的主要功能是“This Chrome extension allows users to view the history of the current active tab in their browser.”。
扩展截图
下载Quick History扩展crx文件
下载Quick History扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Privacy is considered as the most important feature. Browsing data is stored in the browser itself and there are no network calls present. The browser history data is not synched anywhere else. Deleting the extension will delete all data stored by the extension on your browser. Quick History requests the minimum permissions required to operate the extension.
扩展基本信息
名称 | Quick History |
ID | dnngcfoognibnkkngfcamgaibjjlkfdn |
官方URL | https://chromewebstore.google.com/detail/quick-history/dnngcfoognibnkkngfcamgaibjjlkfdn |
简介 | This Chrome extension allows users to view the history of the current active tab in their browser. |
文件大小 | 258 KB |
安装次数 | 58 |
当前版本 | 0.1.2 |
更新时间 | 2023-01-23 |
上架时间 | 2023-01-17 |
评分 | 5.00/5 共2次评分 |
开发者 | probukdev |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://quick-history.web.app |
帮助页面URL | https://quick-history.web.app |
隐私政策页面URL | https://quick-history.web.app/privacy-policy.html |
支持的语言 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Quick History", "version": "0.1.2", "description": "This Chrome extension allows users to view the history of the current active tab in their browser.", "permissions": [ "storage", "tabs", "unlimitedStorage", "history" ], "host_permissions": [ "https:\/\/*\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "contentScript.js" ] } ], "web_accessible_resources": [ { "resources": [ "assets\/bookmark.png", "assets\/play.png", "assets\/delete.png", "assets\/save.png" ], "matches": [ "https:\/\/*\/*" ] } ], "icons": { "16": "assets\/quick-history-16.png", "24": "assets\/quick-history-24.png", "32": "assets\/quick-history-32.png", "64": "assets\/quick-history-64.png", "128": "assets\/quick-history-64.png" }, "action": { "default_icon": { "16": "assets\/quick-history-16.png", "24": "assets\/quick-history-24.png", "32": "assets\/quick-history-32.png", "64": "assets\/quick-history-64.png", "128": "assets\/quick-history-64.png" }, "default_title": "Quick History", "default_popup": "popup.html" }, "manifest_version": 3 } |