Bookmark All
Extends chrome's bookmark all tabs feature across all open windows.
什么是Bookmark All?
Bookmark All是由Andrew Sutherland开发的Chrome扩展程序,该扩展的主要功能是“Extends chrome's bookmark all tabs feature across all open windows.”。
扩展截图
下载Bookmark All扩展crx文件
下载Bookmark All扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Super simple extension. Extends chrome's 'Bookmark all Tabs' feature across all open windows. Click the icon, choose your folder (ISO 8601 Short by default) and every tab in every window is bookmarked into the new folder under 'Other Bookmarks'. That's it! This extension is open sourced on github, see Details > Website.
扩展基本信息
名称 | Bookmark All |
ID | jjhpikpjjhlcmifagompgmhkjalhjopj |
官方URL | https://chromewebstore.google.com/detail/bookmark-all/jjhpikpjjhlcmifagompgmhkjalhjopj |
简介 | Extends chrome's bookmark all tabs feature across all open windows. |
文件大小 | 67 KB |
安装次数 | 3,483 |
当前版本 | 4 |
更新时间 | 2013-08-26 |
上架时间 | 2013-08-26 |
评分 | 4.18/5 共34次评分 |
开发者 | Andrew Sutherland |
付费类型 | free |
扩展官网 | https://github.com/drewis/chrome_extension_bookmark_all |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "4", "name": "Bookmark All", "author": "Andrew Sutherland", "description": "Extends chrome's bookmark all tabs feature across all open windows.", "permissions": [ "bookmarks", "tabs" ], "icons": { "128": "star_icons_128.png", "48": "star_icons_48.png" }, "browser_action": { "default_icon": { "19": "star_icons_19.png", "38": "star_icons_38.png" }, "default_popup": "popup.html", "default_title": "Bookmark All" }, "background": { "scripts": [ "background.js" ] } } |