auto-pin-tab
自動的にタブをロックします
Vad är auto-pin-tab?
auto-pin-tab är en Chrome-tillägg utvecklad av hardwarehacking, och dess huvudfunktion är "自動的にタブをロックします".
Tilläggsskärmbilder
Ladda ner auto-pin-tab-förlängningens CRX-fil
Ladda ner auto-pin-tab-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
When target URL opened, tabs will be pinned automatically 特定のURLを開いた時に、自動的にタブを固定するChrome拡張です。 いつも開きっぱなしにしているサイトを間違って閉じてしまわないよう、自動で気を使ってくれます。 ## Feature * 該当のタブを"固定"します。タブが左端に寄って表示が小さくなります * 固定したタブを閉じようとしたり、別のページに遷移しようとした時にアラートを表示します ## Target デフォルトでは、下記のURLを開いた時に自動的にロックします。 * facebook [https://www.facebook.com/](https://www.facebook.com/) * gmail [https://mail.google.com/mail](https://mail.google.com/mail) * tweetdeck [https://web.tweetdeck.com/](https://web.tweetdeck.com/) * chatwork [https://www.chatwork.com/](https://www.chatwork.com/) 他にもオプションから追加・変更・削除ができます。
Grundläggande Information om Tillägg
Namn | |
ID | gnpmpgcbidokemicoijogpnfkkncbkam |
Officiell webbadress | https://chrome.google.com/webstore/detail/auto-pin-tab/gnpmpgcbidokemicoijogpnfkkncbkam |
Beskrivning | 自動的にタブをロックします |
Filstorlek | 58 KB |
Antal Installationer | 214 |
Aktuell Version | 0.0.50 |
Senast Uppdaterad | 2018-06-09 |
Publiceringsdatum | 2018-06-09 |
Betyg | 1.86/5 Totalt 7 Betyg |
Utvecklare | hardwarehacking |
Betalningssätt | free |
Stödda Språk | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "auto-pin-tab", "manifest_version": 2, "version": "0.0.50", "description": "\u81ea\u52d5\u7684\u306b\u30bf\u30d6\u3092\u30ed\u30c3\u30af\u3057\u307e\u3059", "background": { "scripts": [ "scripts\/background.js" ], "persistent": false }, "icons": { "16": "images\/icon_16x16.png", "128": "images\/icon_128x128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "scripts\/content_script.js" ], "run_at": "document_start" } ], "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "tabs", "management" ], "options_page": "options.html" } |