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 |
官方網址 | 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'" } |