Comment Suggestion

Fast comment for funny image in page

Vad är Comment Suggestion?

Comment Suggestion är en Chrome-tillägg utvecklad av MQuy, och dess huvudfunktion är "Fast comment for funny image in page".

Tilläggsskärmbilder

screenshot

Ladda ner Comment Suggestion-förlängningens CRX-fil

Ladda ner Comment Suggestion-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

                        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                    

Grundläggande Information om Tillägg

Namn Comment Suggestion Comment Suggestion
ID jdbapggmlmiblegbhdfbigngpdfdiile
Officiell webbadress https://chrome.google.com/webstore/detail/comment-suggestion/jdbapggmlmiblegbhdfbigngpdfdiile
Beskrivning Fast comment for funny image in page
Filstorlek 246 KB
Antal Installationer 10
Aktuell Version 1.0.6
Senast Uppdaterad 2017-07-10
Publiceringsdatum 2017-07-10
Betyg 4.90/5 Totalt 10 Betyg
Utvecklare MQuy
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://www.facebook.com/commentsuggestion.addon/
Hjälpsida URL https://www.facebook.com/commentsuggestion.addon/
URL till Sekretesspolicy Sidan https://github.com/MQuy
Stödda Språk 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\/*"
    ]
}