TextFirst

Loading a web page for text first, then, if possible, click to load an image

Co to jest TextFirst?

TextFirst to rozszerzenie Chrome opracowane przez Wit Thanawitchayakarn, a jego główną funkcją jest „Loading a web page for text first, then, if possible, click to load an image”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia TextFirst

Pobierz pliki rozszerzeń TextFirst w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        This is a Chrome extension for people who have slow network connection and/or limited network data usage and want to surf the web as fast and less data usage as possible. The way to achieve this is to let the browser loads only necessary stuffs first and explicitly loads some heavy stuffs on demand later. This extension is intended to do that by trying to block image/video loading and let users click on a placeholder (a square placed instead of an image) to load the image and replace that placeholder.

Caveats
  * Not every image can be clicked to load on demand because some images are links. When you click it, it navigates to wherever the link points to. And some images are background images. It's quite hard to interact with those.
  * Videos are blocked but could not be clicked to load.

This extension is free and open sourced.
For more information, please visit https://github.com/witterk/textfirst                    

Podstawowe informacje o rozszerzeniu

Nazwa TextFirst TextFirst
ID ohjaggojgjiabnkcdogonglbfadljffn
Oficjalny URL https://chrome.google.com/webstore/detail/textfirst/ohjaggojgjiabnkcdogonglbfadljffn
Opis Loading a web page for text first, then, if possible, click to load an image
Rozmiar pliku 15.34 KB
Liczba instalacji 128
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2013-08-10
Data Publikacji 2013-08-10
Ocena 3.92/5 Łącznie 12 Oceny
Deweloper Wit Thanawitchayakarn
Typ Płatności free
Strona Rozszerzenia https://github.com/witterk/textfirst
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TextFirst",
    "version": "0.1",
    "manifest_version": 2,
    "description": "Loading a web page for text first, then, if possible, click to load an image",
    "icons": {
        "16": "icon-16x16.png",
        "48": "icon-48x48.png",
        "128": "icon-128x128.png"
    },
    "browser_action": {
        "default_title": "TextFirst",
        "default_icon": "icon-19x19.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "js": [
                "contentscript.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "all_frames": true,
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "tabs",
        "webRequest",
        "webRequestBlocking",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "web_accessible_resources": [
        "bg.png",
        "bg-loading.png"
    ]
}