Lock Title

Lock tab title with a given text

Vad är Lock Title?

Lock Title är en Chrome-tillägg utvecklad av Ken, och dess huvudfunktion är "Lock tab title with a given text".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Lock Title-förlängningens CRX-fil

Ladda ner Lock Title-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

                        Lock tab title with a given string. The locked title doesn't change even if the tab loads the new page.
You may find it useful when you want to name tabs by yourself to easily distinguish them, not by the original names.

code available here https://github.com/imsut/locktitle                    

Grundläggande Information om Tillägg

Namn Lock Title Lock Title
ID cjkldkjflehlglaenengohmjddgfhlec
Officiell webbadress https://chromewebstore.google.com/detail/lock-title/cjkldkjflehlglaenengohmjddgfhlec
Beskrivning Lock tab title with a given text
Filstorlek 30.45 KB
Antal Installationer 166
Aktuell Version 1.0.0
Senast Uppdaterad 2015-12-31
Publiceringsdatum 2015-12-31
Betyg 3.60/5 Totalt 5 Betyg
Utvecklare Ken
Betalningssätt free
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Lock Title",
    "version": "1.0.0",
    "description": "Lock tab title with a given text",
    "icons": {
        "128": "folder_green_locked.png"
    },
    "author": "Ken Kawamoto",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        "contextMenus",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "commands": []
}