Reddit Smart Share

Simple sharing plugin for reddit.

Was ist Reddit Smart Share?

Reddit Smart Share ist eine Chrome-Erweiterung, die von ItsLennysFault entwickelt wurde, und ihr Hauptmerkmal ist "Simple sharing plugin for reddit.".

Erweiterungsscreenshots

screenshot

Reddit Smart Share-Erweiterungs-CRX-Datei herunterladen

Laden Sie Reddit Smart Share-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

                        Simple extension to make it easier to share things from Reddit. All it does is add a small icon to the top left corner of any reddit video player with a link to the direct video URL.                    

Grundlegende Informationen zur Erweiterung

Name Reddit Smart Share Reddit Smart Share
ID ldggeafbkacldageoihoigakolmgeekg
Offizielle URL https://chromewebstore.google.com/detail/reddit-smart-share/ldggeafbkacldageoihoigakolmgeekg
Beschreibung Simple sharing plugin for reddit.
Dateigröße 14.88 KB
Installationsanzahl 89
Aktuelle Version 0.0.1
Letztes Update 2018-01-29
Veröffentlichungsdatum 2018-01-29
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler ItsLennysFault
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/RedditSmartShare/RedditSmartShareChrome
Hilfeseite URL https://github.com/RedditSmartShare/RedditSmartShareChrome
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Reddit Smart Share",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "Simple sharing plugin for reddit.",
    "homepage_url": "https:\/\/github.com\/RedditSmartShare\/RedditSmartShareChrome",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "https:\/\/www.reddit.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.reddit.com\/*"
            ],
            "css": [
                "src\/inject\/inject.css"
            ]
        },
        {
            "matches": [
                "https:\/\/www.reddit.com\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "icons\/*.png"
    ]
}