ReWord

This extension allows the user to suggest fixes for content on Facebook.

ReWord क्या है?

ReWord VehpuS द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension allows the user to suggest fixes for content on Facebook."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में ReWord एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Have you ever found an infuriating mistake in a Facebook post or comment but couldn't feel bothered to correct the person who posted. Reword is here to make things easier for you by allowing you to edit the post within Facebook and generate a message for you to send to the original writer.

How to use the extension:
--------------------------
1. Select the text you want to fix. Only text that is part of a Facebook post or comment is supported
2. Either right click on the text and select the "ReWord" option or press the ReWord extension icon (if you have not hidden it).
You should now be presented with a copy of the text which you can edit, and a "ReWord" button.
3. Write your correction and press the "ReWord" button.
4. A new Facebook message will be created indicating your correction. Review and send send it to the original author.

Note - following the changes to the facebook UI, we are currently unable to discover their user id - you will need to add their name directly to the message in the meantime

Look for us on Wordpress as well: https://wordpress.org/plugins/reword/                    

एक्सटेंशन की मूल जानकारी

नाम ReWord ReWord
ID lkklmapfgjdbnalncandgnfenaflfpip
आधिकारिक URL https://chrome.google.com/webstore/detail/reword/lkklmapfgjdbnalncandgnfenaflfpip
विवरण This extension allows the user to suggest fixes for content on Facebook.
फ़ाइल का आकार 16.42 KB
स्थापना संख्या 122
वर्तमान संस्करण 2.0
अंतिम अपडेट 2021-07-18
प्रकाशन तिथि 2018-06-27
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर VehpuS
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ReWord",
    "description": "This extension allows the user to suggest fixes for content on Facebook.",
    "version": "2.0",
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/connect.facebook.net blob: filesystem: chrome-extension-resource:; object-src 'self'",
    "page_action": {
        "default_icon": "icon.png"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "tabs",
        "https:\/\/ajax.googleapis.com\/",
        "https:\/\/connect.facebook.net\/en_US\/sdk\/debug.js",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.facebook.com\/*"
            ],
            "js": [
                "rewordInterface.js"
            ]
        }
    ],
    "minimum_chrome_version": "28"
}