Manager for Telegra.ph

Telegraph Authorisation tool

Cos'è Manager for Telegra.ph?

Manager for Telegra.ph è un'estensione di Chrome sviluppata da https://andreitazetdinov.com, e la sua funzione principale è "Telegraph Authorisation tool".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Manager for Telegra.ph

Scarica i file di estensione Manager for Telegra.ph in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Telegraph blogs managing tool

If you decided to use Telegraph for your next blog then this tool is absolute must have for you. You can easily auth into telegra.ph blogging system and copy and paste your articles into Telegram channel. No Ads. No data collecting. I made this tool for myself and also for you. Enjoy.                    

Informazioni di Base sull'Estensione

Nome Manager for Telegra.ph Manager for Telegra.ph
ID mkpbnggpapchbnjbgjkanokmdgblcphd
URL Ufficiale https://chromewebstore.google.com/detail/manager-for-telegraph/mkpbnggpapchbnjbgjkanokmdgblcphd
Descrizione Telegraph Authorisation tool
Dimensione del File 107 KB
Conteggio Installazioni 238
Versione Corrente 1.0.1
Ultimo Aggiornamento 2021-11-17
Data di Pubblicazione 2021-08-15
Valutazione 4.00/5 Totale 1 Valutazioni
Sviluppatore https://andreitazetdinov.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://andreitazetdinov.com/
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Manager for Telegra.ph",
    "description": "Telegraph Authorisation tool",
    "version": "1.0.1",
    "manifest_version": 2,
    "icons": {
        "16": "icons\/text_16.png",
        "64": "icons\/text_64.png",
        "128": "icons\/text_128.png"
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "storage",
        "*:\/\/*.telegra.ph\/"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_title": "Bloggers managing tools",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.telegra.ph\/*"
            ],
            "css": [
                "contentStyles.css"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}