Record Page Memo Quickly to Sheet

Record viewing Web page memo quickly to Google Spread Sheet

Τι είναι το Record Page Memo Quickly to Sheet;

Το Record Page Memo Quickly to Sheet είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον koharite, και η κύρια λειτουργία του είναι "Record viewing Web page memo quickly to Google Spread Sheet".

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

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Record Page Memo Quickly to Sheet

Λήψη αρχείων επέκτασης Record Page Memo Quickly to Sheet σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

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

                        現在見ているWebページについて、Google Spread Sheetに分類・コメントを付与して記録することができます。
この拡張機能アイコンをクリックする前にWebページ上で選択していたテキストは、Memo欄にコピーされます。

使い始める前に設定をしてください。

1. 記録先のGoogle Spread Sheetを用意する
2.拡張機能の「オプション」ページの設定
 2.1 記録先のGoogle Spread SheetのIDを入力する。
   下のようなアドレスの[spread sheet ID]部分
      https://docs.google.com/spreadsheets/d/[spread sheet ID]/edit
 2.2 この拡張機能がSpread Sheetにアクセスできるようにユーザー認証を行う。

 2.3 (オプション)記録者情報を与える
      (オプション)Spread Sheetのワークシートごとにカテゴリを分けて記録できるようにリンク付けする。

English Explanation:
This extension send viewing web page information with your comment to your Google Spread Sheet.
Selected text on web page copy to Memo section of this extension.

Please setup before using the extension.

1. Prepare your Google Spread Sheet for record
2. Configure this Extension option page
 2.1 Enter your Google Spread Sheet's ID for record
   Spread Sheet's ID is in your Spread Sheet address such as example below. [spread sheet ID] part is your Spread Sheet's ID.
      https://docs.google.com/spreadsheets/d/[spread sheet ID]/edit
 2.2 User authenticate to permit this extension accessing your Spread Sheet.

 2.3 (Optional)Add recorder Information.
      (Optional)Link Spread Sheet's worksheets to Category name that you entered.                    

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

Όνομα Record Page Memo Quickly to Sheet Record Page Memo Quickly to Sheet
ID dlckgdbojnfndfckffbkgkomilfbpkam
Επίσημο URL https://chromewebstore.google.com/detail/record-page-memo-quickly/dlckgdbojnfndfckffbkgkomilfbpkam
Περιγραφή Record viewing Web page memo quickly to Google Spread Sheet
Μέγεθος Αρχείου 103 KB
Αριθμός Εγκαταστάσεων 39
Τρέχουσα Έκδοση 0.9.0
Τελευταία Ενημέρωση 2017-07-18
Ημερομηνία Δημοσίευσης 2017-07-17
Προγραμματιστής koharite
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Record Page Memo Quickly to Sheet",
    "version": "0.9.0",
    "short_name": "PageMemo2Sheet",
    "description": "Record viewing Web page memo quickly to Google Spread Sheet",
    "browser_action": {
        "default_popup": "popup.html"
    },
    "options_page": "options.html",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "icons": {
        "128": "icons\/128.png",
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "19": "icons\/19.png",
        "38": "icons\/38.png"
    },
    "manifest_version": 2,
    "minimum_chrome_version": "29",
    "permissions": [
        "tabs",
        "contextMenus",
        "identity",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "oauth2": {
        "client_id": "828149396757-9e0embvs7m7kvf9l8hdaede4kb2mvnvs.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/spreadsheets",
            "https:\/\/www.googleapis.com\/auth\/drive",
            "https:\/\/www.googleapis.com\/auth\/drive.file"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ]
}