Comment Suggestion

Fast comment for funny image in page

Was ist Comment Suggestion?

Comment Suggestion ist eine Chrome-Erweiterung, die von MQuy entwickelt wurde, und ihr Hauptmerkmal ist "Fast comment for funny image in page".

Erweiterungsscreenshots

screenshot

Comment Suggestion-Erweiterungs-CRX-Datei herunterladen

Laden Sie Comment Suggestion-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

                        Comment Suggestion makes it easy to send emojis, GIFs in any text field. To get started, type ":smi" or "/giphy" and using ENTER to get suggestion and ARROW DOWN UP to navigate. Command intelligently formats whatever you'd like to send for any text field — so it supports sites like Github, Gmail, Inbox, and Reddit out of the box.

DISCLAIMER:
  + In Facebook, using space after emoji to make it work
  + Currently, facebook will remove emoji(not kawaii) from new post( works fine for comment)
  + Images are captured from MAC, emoji might display differently depend on Window, Linux, ...
  + Don't work on input with autocomplete off                    

Grundlegende Informationen zur Erweiterung

Name Comment Suggestion Comment Suggestion
ID jdbapggmlmiblegbhdfbigngpdfdiile
Offizielle URL https://chrome.google.com/webstore/detail/comment-suggestion/jdbapggmlmiblegbhdfbigngpdfdiile
Beschreibung Fast comment for funny image in page
Dateigröße 246 KB
Installationsanzahl 10
Aktuelle Version 1.0.6
Letztes Update 2017-07-10
Veröffentlichungsdatum 2017-07-10
Bewertung 4.90/5 Insgesamt 10 Bewertungen
Entwickler MQuy
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.facebook.com/commentsuggestion.addon/
Hilfeseite URL https://www.facebook.com/commentsuggestion.addon/
URL der Datenschutzrichtlinien-Seite https://github.com/MQuy
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Comment Suggestion",
    "description": "Fast comment for funny image in page",
    "author": "MQuy",
    "version": "1.0.6",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_matches": [
                "*:\/\/*.slack.com\/*",
                "*:\/\/trello.com\/*"
            ],
            "js": [
                "vendor.js",
                "content\/app.js"
            ],
            "css": [
                "content\/app.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_page": "options\/index.html",
    "permissions": [
        "",
        "storage",
        "tabs",
        "contextMenus"
    ],
    "browser_action": {
        "default_icon": "icons\/comment-32.png"
    },
    "icons": {
        "16": "icons\/comment-16.png",
        "24": "icons\/comment-24.png",
        "32": "icons\/comment-32.png",
        "64": "icons\/comment-64.png",
        "128": "icons\/comment-128.png"
    },
    "web_accessible_resources": [
        "icons\/*"
    ]
}