Pinned Tabs
Keep Pinned Tabs When Open New Window
Was ist Pinned Tabs?
Pinned Tabs ist eine Chrome-Erweiterung, die von wnaklulu entwickelt wurde, und ihr Hauptmerkmal ist "Keep Pinned Tabs When Open New Window".
Erweiterungsscreenshots
Pinned Tabs-Erweiterungs-CRX-Datei herunterladen
Laden Sie Pinned Tabs-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
The closed window is pinned the next time the label is reopened, and the new window automatically synchronizes pinned labels 1. Need to fix the tag right pinned tag 2. Open the extension input name to save the pinned label 3. Select enable next time will automatically open enabled tag group 4. [github](https://github.com/0851/pinned) 5. [demo](https://raw.githubusercontent.com/0851/pinned/master/images/use.mp4)
Grundlegende Informationen zur Erweiterung
Name | Pinned Tabs |
ID | biccgodmohjplafdhicdhkdeeejcmgia |
Offizielle URL | https://chromewebstore.google.com/detail/pinned-tabs/biccgodmohjplafdhicdhkdeeejcmgia |
Beschreibung | Keep Pinned Tabs When Open New Window |
Dateigröße | 41.32 KB |
Installationsanzahl | 24 |
Aktuelle Version | 1.0.0 |
Letztes Update | 2019-01-21 |
Veröffentlichungsdatum | 2019-01-20 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | wnaklulu |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/0851/pinned |
Hilfeseite URL | https://github.com/0851/pinned/issues |
Unterstützte Sprachen | en,zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_ext_name__", "short_name": "__MSG_ext_name_sort__", "version": "1.0.0", "description": "__MSG_ext_description__", "default_locale": "en", "icons": { "16": "images\/icon32.png", "48": "images\/icon64.png", "128": "images\/icon128.png" }, "permissions": [ "tabs", "storage" ], "browser_action": { "default_icon": { "16": "images\/icon32.png", "48": "images\/icon64.png", "128": "images\/icon128.png" }, "default_popup": "popup.html", "default_title": "__MSG_ext_name__" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "background": { "scripts": [ "common.js", "background.js" ], "persistent": false } } |