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.

Scroll Percentage in Tab Title Extension क्या है?

Scroll Percentage in Tab Title Extension dimshik100 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "See scrolled percentage on page tab. Always see your blog or article reading progress, how much you have read and how much is left."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Scroll Percentage in Tab Title Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Scroll Percentage in Tab Title Extension Scroll Percentage in Tab Title Extension
ID fbohjeijkanpeamijojloonklakpncef
आधिकारिक URL https://chromewebstore.google.com/detail/scroll-percentage-in-tab/fbohjeijkanpeamijojloonklakpncef
विवरण See scrolled percentage on page tab. Always see your blog or article reading progress, how much you have read and how much is left.
फ़ाइल का आकार 17.18 KB
स्थापना संख्या 728
वर्तमान संस्करण 0.2
अंतिम अपडेट 2020-06-01
प्रकाशन तिथि 2020-06-01
रेटिंग 4.20/5 कुल 5 रेटिंग्स
डेवलपर dimshik100
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/dimshik100/Scroll-Percentage-in-Tab-Title-Chrome-Extension
समर्थित भाषाएँ 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"
    ]
}