Scroll Percentage in Tab Title Extension

See scrolled percentage on page tab. Always see your blog or article reading progress, how much you have read and how much is left.

Wat is Scroll Percentage in Tab Title Extension?

Scroll Percentage in Tab Title Extension is een Chrome-extensie ontwikkeld door dimshik100, en de belangrijkste functie is "See scrolled percentage on page tab. Always see your blog or article reading progress, how much you have read and how much is left.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Scroll Percentage in Tab Title Extension

Download Scroll Percentage in Tab Title Extension-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Chrome extension that updates the page title with the scrolled percentage of the page. Best for blogs and articles. Always see your reading progress, how much you have read and how much is left.                    

Basisinformatie over de Extensie

Naam Scroll Percentage in Tab Title Extension Scroll Percentage in Tab Title Extension
ID fbohjeijkanpeamijojloonklakpncef
Officiële URL https://chromewebstore.google.com/detail/scroll-percentage-in-tab/fbohjeijkanpeamijojloonklakpncef
Beschrijving See scrolled percentage on page tab. Always see your blog or article reading progress, how much you have read and how much is left.
Bestandsgrootte 17.18 KB
Aantal Installaties 728
Huidige Versie 0.2
Laatst Bijgewerkt 2020-06-01
Publicatiedatum 2020-06-01
Beoordeling 4.20/5 Totaal 5 Beoordelingen
Ontwikkelaar dimshik100
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/dimshik100/Scroll-Percentage-in-Tab-Title-Chrome-Extension
Ondersteunde Talen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Scroll Percentage in Tab Title Extension",
    "short_name": "ScrollPercentageInTabTitle",
    "version": "0.2",
    "author": "Dima Vishnevetsky ",
    "description": "See scrolled percentage on page tab. Always see your blog or article reading progress, how much you have read and how much is left.",
    "browser_action": {
        "default_icon": {
            "16": "icons\/icon_extension_toolbar_16.png",
            "32": "icons\/icon_extension_toolbar_32.png"
        },
        "default_title": "Scroll Percentage in Tab Title",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icons\/icon_extension_toolbar_16.png",
        "32": "icons\/icon_windows_computers_32.png",
        "48": "icons\/icon_extensions_management_page_48.png",
        "128": "icons\/icon_web_store_icon_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "extensionInjector.js"
            ],
            "css": [],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "extension.js"
    ],
    "permissions": [
        "storage",
        "tabs"
    ]
}