auto-pin-tab
自動的にタブをロックします
Cos'è auto-pin-tab?
auto-pin-tab è un'estensione di Chrome sviluppata da hardwarehacking, e la sua funzione principale è "自動的にタブをロックします".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione auto-pin-tab
Scarica i file di estensione auto-pin-tab in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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/)
他にもオプションから追加・変更・削除ができます。 Informazioni di Base sull'Estensione
| Nome | |
| ID | gnpmpgcbidokemicoijogpnfkkncbkam |
| URL Ufficiale | https://chrome.google.com/webstore/detail/auto-pin-tab/gnpmpgcbidokemicoijogpnfkkncbkam |
| Descrizione | 自動的にタブをロックします |
| Dimensione del File | 58 KB |
| Conteggio Installazioni | 214 |
| Versione Corrente | 0.0.50 |
| Ultimo Aggiornamento | 2018-06-09 |
| Data di Pubblicazione | 2018-06-09 |
| Valutazione | 1.86/5 Totale 7 Valutazioni |
| Sviluppatore | hardwarehacking |
| Tipo di Pagamento | free |
| Lingue Supportate | 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"
} | |