auto-pin-tab
自動的にタブをロックします
Qu'est-ce que auto-pin-tab ?
auto-pin-tab est une extension Chrome développée par hardwarehacking, et sa fonction principale est "自動的にタブをロックします".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension auto-pin-tab
Téléchargez les fichiers d'extension auto-pin-tab au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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/) 他にもオプションから追加・変更・削除ができます。
Informations de Base sur l'Extension
Nom | |
ID | gnpmpgcbidokemicoijogpnfkkncbkam |
URL Officiel | https://chrome.google.com/webstore/detail/auto-pin-tab/gnpmpgcbidokemicoijogpnfkkncbkam |
Description | 自動的にタブをロックします |
Taille du Fichier | 58 KB |
Nombre d'Installations | 214 |
Version Actuelle | 0.0.50 |
Dernière Mise à Jour | 2018-06-09 |
Date de Publication | 2018-06-09 |
Évaluation | 1.86/5 Total 7 Évaluations |
Développeur | hardwarehacking |
Type de Paiement | free |
Langues Prises en Charge | 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" } |