Pinned Tabs

Keep Pinned Tabs When Open New Window

Vad är Pinned Tabs?

Pinned Tabs är en Chrome-tillägg utvecklad av wnaklulu, och dess huvudfunktion är "Keep Pinned Tabs When Open New Window".

Tilläggsskärmbilder

screenshot

Ladda ner Pinned Tabs-förlängningens CRX-fil

Ladda ner Pinned Tabs-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

                        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)                    

Grundläggande Information om Tillägg

Namn Pinned Tabs Pinned Tabs
ID biccgodmohjplafdhicdhkdeeejcmgia
Officiell webbadress https://chromewebstore.google.com/detail/pinned-tabs/biccgodmohjplafdhicdhkdeeejcmgia
Beskrivning Keep Pinned Tabs When Open New Window
Filstorlek 41.32 KB
Antal Installationer 24
Aktuell Version 1.0.0
Senast Uppdaterad 2019-01-21
Publiceringsdatum 2019-01-20
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare wnaklulu
Betalningssätt free
Tilläggswebbplats https://github.com/0851/pinned
Hjälpsida URL https://github.com/0851/pinned/issues
Stödda Språk 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
    }
}