Tidy Sidebar

Tidy Sidebar

Τι είναι το Tidy Sidebar;

Το Tidy Sidebar είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://whatever-will-be-que-sera-sera.tumblr.com, και η κύρια λειτουργία του είναι "Tidy Sidebar".

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

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Tidy Sidebar

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

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

                        Tabs List & Bookmarks Sidebar

 
==================
Tidy Sidebar development stopped.
There are more bad people than there are good.
Bye!
==================

==========sidebar==========
 Olo graph
>The sidebar should be docked. 
>I'm a senior analyst programmer.


You don't know that?
programmer?

https://chromium.googlesource.com/chromium/src/+/3a80ea33a37398a081455f4ae8b70572c7bc80e8

https://code.google.com/p/chromium/issues/detail?id=51084
=============================





Search bookmarks by tag
Address bar by typing "* " (asterisk-space)
  


  
---------------
Shortcut keys
---------------
  
Sidebar on/off
Alt+A


----Change keyboard shortcut keys---

Just open the extensions page
scroll to the bottom of the page and click "Configure commands". 





---------------
Bookmark tags
---------------
  
After you bookmark a page, you have the option of adding "tags" to the bookmark.
These tags are used to help better categorize bookmarks so you can find them when searching.
  
  
The Tags field lets you enter a list of tags you want associated with the new bookmark.
When using more than one tag, use a comma to separate them.
  
  
(e.g. music,jazz,guitar)
  
  
context menu -> edit -> bookmark tags
  
Address bar by typing "* " (asterisk-space)
  
  
  
  
********* ATTENTION *********
MAX_WRITE_OPERATIONS_PER_HOUR ( 100 )

http://developer.chrome.com/extensions/bookmarks.html#property-MAX_WRITE_OPERATIONS_PER_HOUR                    

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

Όνομα Tidy Sidebar Tidy Sidebar
ID dgmacifhhpefamjmolpipkijcofcmbgp
Επίσημο URL https://chromewebstore.google.com/detail/tidy-sidebar/dgmacifhhpefamjmolpipkijcofcmbgp
Περιγραφή Tidy Sidebar
Μέγεθος Αρχείου 189 KB
Αριθμός Εγκαταστάσεων 8,345
Τρέχουσα Έκδοση 5.2
Τελευταία Ενημέρωση 2017-02-15
Ημερομηνία Δημοσίευσης 2017-02-15
Αξιολόγηση 3.70/5 Συνολικά 145 Αξιολογήσεις
Προγραμματιστής https://whatever-will-be-que-sera-sera.tumblr.com
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tidy Sidebar",
    "version": "5.2",
    "description": "Tidy Sidebar",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "omnibox": {
        "keyword": "*"
    },
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "icon19.png",
        "default_title": "Tidy Sidebar"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "run_at": "document_start",
            "js": [
                "contentscript.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "web_accessible_resources": [
        "icon19on.png",
        "icon19off.png"
    ],
    "commands": {
        "myCommandADDBOOKMARK": {
            "suggested_key": {
                "default": "Alt+A"
            },
            "description": "Send add Bookmark command"
        }
    },
    "minimum_chrome_version": "19",
    "permissions": [
        "storage",
        "unlimitedStorage",
        "bookmarks",
        "history",
        "tabs",
        "contextMenus",
        "chrome:\/\/favicon\/*",
        "sessions",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "webRequest",
        "webRequestBlocking"
    ]
}