Manager for Telegra.ph

Telegraph Authorisation tool

Was ist Manager for Telegra.ph?

Manager for Telegra.ph ist eine Chrome-Erweiterung, die von https://andreitazetdinov.com entwickelt wurde, und ihr Hauptmerkmal ist "Telegraph Authorisation tool".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Manager for Telegra.ph-Erweiterungs-CRX-Datei herunterladen

Laden Sie Manager for Telegra.ph-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

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Manager for Telegra.ph Manager for Telegra.ph
ID mkpbnggpapchbnjbgjkanokmdgblcphd
Offizielle URL https://chromewebstore.google.com/detail/manager-for-telegraph/mkpbnggpapchbnjbgjkanokmdgblcphd
Beschreibung Telegraph Authorisation tool
Dateigröße 107 KB
Installationsanzahl 238
Aktuelle Version 1.0.1
Letztes Update 2021-11-17
Veröffentlichungsdatum 2021-08-15
Bewertung 4.00/5 Insgesamt 1 Bewertungen
Entwickler https://andreitazetdinov.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://andreitazetdinov.com/
Unterstützte Sprachen 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"
            ]
        }
    ]
}