Pin Tab
A browser action to pin a tab
什么是Pin Tab?
Pin Tab是由hal313开发的Chrome扩展程序,该扩展的主要功能是“A browser action to pin a tab”。
扩展截图
下载Pin Tab扩展crx文件
下载Pin Tab扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A plugin to automatically pin tabs based on URL. Provides the ability to create multiple rules, disable rules and specify where the pinned tab should go. Now supports automatic moving of unpinned tabs to the far right as well as pinning new tabs or tabs opened via "Open link in new tab".
扩展基本信息
名称 | Pin Tab |
ID | dgldedkigbbalaioohedddpameekglma |
官方URL | https://chromewebstore.google.com/detail/pin-tab/dgldedkigbbalaioohedddpameekglma |
简介 | A browser action to pin a tab |
文件大小 | 172 KB |
安装次数 | 8,789 |
当前版本 | 1.3.3 |
更新时间 | 2019-04-26 |
上架时间 | 2019-04-25 |
评分 | 4.52/5 共60次评分 |
开发者 | hal313 |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "1.3.3", "manifest_version": 2, "description": "__MSG_appDescription__", "icons": { "16": "images\/icon-16x16.png", "48": "images\/icon-48x48.png", "128": "images\/icon-128x128.png" }, "default_locale": "en", "background": { "scripts": [ "scripts\/background.js" ] }, "browser_action": { "default_title": "Pin!", "default_icon": "images\/icon-48x48.png" }, "options_page": "options.html", "permissions": [ "tabs", "storage" ], "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'" } |