Workplace Readable

Chrome extension to make Workplace a bit easier to read

Workplace Readable क्या है?

Workplace Readable rockwillj द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Chrome extension to make Workplace a bit easier to read"।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Chrome extension to make Workplace a bit easier to read. It provides about 10 features for now.

## Features

1. Hide "Pagelet Sidebar" at the right end of the page
2. Hide "Right Column" next to the content area
3. Make posts easier to read by expanding the content width
4. Move "Trending Posts" from "Right Column" to the content area
5. Place "Expand All" in each user content
6. Place "Scroll to Top" button at the bottom right of the page
7. Highlight mentions to me a little
8. Highlight "Recent Activity" and "Older" headings a little
9. Highlight subheadings a little in "Left Column"

See https://github.com/rockwillj/Workplace-Readable for more information.                    

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

नाम Workplace Readable Workplace Readable
ID leodekbefiofimagjbemhoheikoibjfn
आधिकारिक URL https://chromewebstore.google.com/detail/workplace-readable/leodekbefiofimagjbemhoheikoibjfn
विवरण Chrome extension to make Workplace a bit easier to read
फ़ाइल का आकार 1.26 MB
स्थापना संख्या 402
वर्तमान संस्करण 1.7.6
अंतिम अपडेट 2017-05-15
प्रकाशन तिथि 2017-05-14
रेटिंग 5.00/5 कुल 7 रेटिंग्स
डेवलपर rockwillj
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Workplace Readable",
    "version": "1.7.6",
    "description": "Chrome extension to make Workplace a bit easier to read",
    "icons": {
        "16": "image\/icon16.png",
        "48": "image\/icon48.png",
        "128": "image\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "image\/icon16.png",
            "24": "image\/icon24.png",
            "32": "image\/icon32.png"
        },
        "default_popup": "html\/popup.html"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/*.facebook.com\/*"
            ],
            "exclude_matches": [
                "*:\/\/www.facebook.com\/*",
                "*:\/\/developers.facebook.com\/*",
                "*:\/\/l.facebook.com\/*",
                "*:\/\/pixel.facebook.com\/*",
                "*:\/\/upload.facebook.com\/*",
                "*:\/\/vupload-edge.facebook.com\/*",
                "*:\/\/vupload2.facebook.com\/*"
            ],
            "js": [
                "js\/jquery-2.2.4.min.js",
                "js\/content.js",
                "js\/expand-all.js",
                "js\/read-later.js"
            ],
            "css": [
                "css\/content.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "image\/ic_chevron_right.png",
        "image\/ic_chevron_right_hover.png",
        "image\/ic_chevron_left.png",
        "image\/ic_chevron_left_hover.png",
        "image\/ic_play_circle_outline.png",
        "image\/ic_play_circle_filled.png",
        "image\/ic_format_line_spacing.png",
        "image\/ic_bookmark.png",
        "image\/ic_bookmark_border.png"
    ],
    "options_ui": {
        "page": "html\/options.html",
        "chrome_style": true
    },
    "homepage_url": "https:\/\/github.com\/rockwillj\/Workplace-Readable",
    "permissions": [
        "*:\/\/*.facebook.com\/*",
        "storage"
    ]
}