Yabumi for Chrome

Speedy screen shot sharing via Yabumi

Τι είναι το Yabumi for Chrome;

Το Yabumi for Chrome είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Webnium, και η κύρια λειτουργία του είναι "Speedy screen shot sharing via Yabumi".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Yabumi for Chrome

Λήψη αρχείων επέκτασης Yabumi for Chrome σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        You can capture a screen shot of the page you are viewing and share it via Yabumi(https://yabumi.cc).

Usage:
You can capture & share visible area of viewing page on click yabumi icon.
You can also capture entire page and selected area of viewing page via context menu.
The action when click yabumi icon (called default action) is configurable.

Area Selecting:
1. Entering area selecting mode, the page come darkened.
2. Select area with mouse.(Drag and drop)
3. When release mouse button, the area is captured and shared.

You can cancel area selecting mode with right click.

Change log:
1.3.2 fix visible area capture on edge case
1.3.1 fix area selecting mask size on small page
1.3.0 support select area capture
1.2.1 support data URI as image element source
1.2.0 support upload a copy of image element source
1.1.8 fix visible area capture with high-resolution display
1.1.7 support high-resolution display and zoomed tabs
1.1.6 change design of options page
1.1.5 modify to send client name to yabumi server
1.1.4 send page title as a name of image to yabumi server
1.1.3 fix notification message for pages whose width*height is 0 
1.1.2 fix option page is white
1.1.1 notify if page to capture is too large
1.1.0 Add default duration option
1.0.2 display notification on error
1.0.1 optimize context menu
1.0.0 saves options real time
0.3.2 fixes context menu
0.3.0 add option page and allow choose action on click icon
0.2.0 internationalization(English, Japanese)
0.1.0 support entire page capturing and context menu
0.0.1 first release                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Yabumi for Chrome Yabumi for Chrome
ID pkipobhcddgffnenhohcafaaekfndmcf
Επίσημο URL https://chrome.google.com/webstore/detail/yabumi-for-chrome/pkipobhcddgffnenhohcafaaekfndmcf
Περιγραφή Speedy screen shot sharing via Yabumi
Μέγεθος Αρχείου 52.87 KB
Αριθμός Εγκαταστάσεων 367
Τρέχουσα Έκδοση 1.3.2
Τελευταία Ενημέρωση 2016-08-08
Ημερομηνία Δημοσίευσης 2016-08-08
Αξιολόγηση 3.67/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής Webnium
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://yabumi.cc
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/webnium/yabumi-for-chrome/issues
Υποστηριζόμενες Γλώσσες en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Yabumi for Chrome",
    "short_name": "Yabumi",
    "version": "1.3.2",
    "minimum_chrome_version": "35",
    "author": "Webnium",
    "default_locale": "en",
    "description": "__MSG_extDescription__",
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "img\/action_icon19.png",
            "38": "img\/action_icon38.png"
        },
        "default_title": "__MSG_browserActionTitle__"
    },
    "background": {
        "scripts": [
            "context-menus.js",
            "manipulate-tab.js",
            "defaultOptions.js",
            "main.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "clipboardRead",
        "activeTab",
        "contextMenus",
        "storage",
        "notifications",
        ""
    ]
}