Throwback
Simply stores web browing sessions, allows easy access to recent collections of tabs.
什么是Throwback?
Throwback是由Royden Lynch开发的Chrome扩展程序,该扩展的主要功能是“Simply stores web browing sessions, allows easy access to recent collections of tabs.”。
扩展截图
下载Throwback扩展crx文件
下载Throwback扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
---------- Description ---------- Does your computer get cluttered with tabs you don't want to close and possibly lose? I know mine does! Throwback is a simple 2-click tool to save or retrieve any browsing session you might want. Working on a research paper tonight? Go ahead and save your tabs so that you can close out of them and return to them later! ---------- How To Use the Extension ---------- After installing the Throwback extension, an icon will appear on the top right of the Google Chrome window located next to other extension icons. To begin using the service, simply click on the icon, which will display a popup. On the popup, you'll see a row asking you to create a new session, clicking the add new button will allow you to create a new entry for which you can save your tabs. Go ahead and give it a title, for example "English Paper Research" and click enter. You should see a new row load on the popup with three buttons, these buttons are (left to right) save, open, and delete. Clicking save will currently store all the tabs you currently have open in your current window. Clicking open will open whatever tabs are saved for that session. Clicking delete will remove those tabs from memory and delete the row. If you want to delete all your sessions at once, then you can click the button on the right of the create a new session button in the top row. ---------- Options Page ---------- Currently, the options page doesn't make sense in the context of the extension. I apologize for this, I realized I left it in from my tutorial on learning the process of developing an extension in the first place. I do intend on changing this for the next update, so if you happen to see and try the extension any suggestions would be appreciated. ---------- About the Extension/Developer ---------- I just want to put in the description and make clear that currently, this Google Chrome extension is more of a personal project that I am undergoing to learn more about the process of developing and publish an extension. Right now, I intend to work on it as such, and don't have plans on monetizing any aspect about it, adding advertisements, or etc. This is subject to change at any time, but I currently don't have plans to do so. As far as the textures I am currently using, many of these icons are pictures I found online from free or fair use sites, therefore I am under the impression as directed by those sites that I should have no problem using them, I'll still say that any rightful ownership goes to the rightful owners. ---------- Next Update Plans: ---------- - Bug Fixes - Nicer Textures - Options Page
扩展基本信息
名称 | |
ID | hhegjnbcchpcmkdihmihcjcodbnkenkp |
官方URL | https://chrome.google.com/webstore/detail/throwback/hhegjnbcchpcmkdihmihcjcodbnkenkp |
简介 | Simply stores web browing sessions, allows easy access to recent collections of tabs. |
文件大小 | 47.97 KB |
安装次数 | 15 |
当前版本 | 0.1.1 |
更新时间 | 2018-11-08 |
上架时间 | 2018-11-08 |
评分 | 5.00/5 共1次评分 |
开发者 | Royden Lynch |
付费类型 | free |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Throwback", "version": "0.1.1", "description": "Simply stores web browing sessions, allows easy access to recent collections of tabs.", "author": "Royden Lynch", "permissions": [ "declarativeContent", "storage", "activeTab", "tabs" ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/throwback-icon-16.png", "32": "images\/throwback-icon-32.png", "48": "images\/throwback-icon-48.png", "128": "images\/throwback-icon-128.png" } }, "icons": { "16": "images\/throwback-icon-16.png", "32": "images\/throwback-icon-32.png", "48": "images\/throwback-icon-48.png", "128": "images\/throwback-icon-128.png" }, "options_page": "options.html", "manifest_version": 2 } |