Reddit Smart Share

Simple sharing plugin for reddit.

Vad är Reddit Smart Share?

Reddit Smart Share är en Chrome-tillägg utvecklad av ItsLennysFault, och dess huvudfunktion är "Simple sharing plugin for reddit.".

Tilläggsskärmbilder

screenshot

Ladda ner Reddit Smart Share-förlängningens CRX-fil

Ladda ner Reddit Smart Share-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Reddit Smart Share Reddit Smart Share
ID ldggeafbkacldageoihoigakolmgeekg
Officiell webbadress https://chromewebstore.google.com/detail/reddit-smart-share/ldggeafbkacldageoihoigakolmgeekg
Beskrivning Simple sharing plugin for reddit.
Filstorlek 14.88 KB
Antal Installationer 89
Aktuell Version 0.0.1
Senast Uppdaterad 2018-01-29
Publiceringsdatum 2018-01-29
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare ItsLennysFault
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/RedditSmartShare/RedditSmartShareChrome
Hjälpsida URL https://github.com/RedditSmartShare/RedditSmartShareChrome
Stödda Språk 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"
    ]
}