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.

Was ist Scroll Percentage in Tab Title Extension?

Scroll Percentage in Tab Title Extension ist eine Chrome-Erweiterung, die von dimshik100 entwickelt wurde, und ihr Hauptmerkmal ist "See scrolled percentage on page tab. Always see your blog or article reading progress, how much you have read and how much is left.".

Erweiterungsscreenshots

screenshot
screenshot

Scroll Percentage in Tab Title Extension-Erweiterungs-CRX-Datei herunterladen

Laden Sie Scroll Percentage in Tab Title Extension-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

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Scroll Percentage in Tab Title Extension Scroll Percentage in Tab Title Extension
ID fbohjeijkanpeamijojloonklakpncef
Offizielle URL https://chromewebstore.google.com/detail/scroll-percentage-in-tab/fbohjeijkanpeamijojloonklakpncef
Beschreibung See scrolled percentage on page tab. Always see your blog or article reading progress, how much you have read and how much is left.
Dateigröße 17.18 KB
Installationsanzahl 728
Aktuelle Version 0.2
Letztes Update 2020-06-01
Veröffentlichungsdatum 2020-06-01
Bewertung 4.20/5 Insgesamt 5 Bewertungen
Entwickler dimshik100
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/dimshik100/Scroll-Percentage-in-Tab-Title-Chrome-Extension
Unterstützte Sprachen 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"
    ]
}