Bookmarks
Access to your bookmarks, history, and applications
Cos'è Bookmarks?
Bookmarks è un'estensione di Chrome sviluppata da Andrey Makushkin, e la sua funzione principale è "Access to your bookmarks, history, and applications".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Bookmarks
Scarica i file di estensione Bookmarks in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Informazioni di Base sull'Estensione
| Nome | |
| ID | mhophkifmlkobgkeahlhcdnjadcpmlbp |
| URL Ufficiale | https://chromewebstore.google.com/detail/bookmarks/mhophkifmlkobgkeahlhcdnjadcpmlbp |
| Descrizione | Access to your bookmarks, history, and applications |
| Dimensione del File | 114 KB |
| Conteggio Installazioni | 10,000 |
| Versione Corrente | 0.9.33 |
| Ultimo Aggiornamento | 2016-12-07 |
| Data di Pubblicazione | 2016-12-06 |
| Valutazione | 4.35/5 Totale 242 Valutazioni |
| Sviluppatore | Andrey Makushkin |
| Tipo di Pagamento | free |
| Lingue Supportate | en,fr,ru,zh-TW |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"browser_action": {
"default_icon": "images\/bookmark_19.png",
"default_title": "__MSG_name__"
},
"content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
"background": {
"scripts": [
"js\/create.js",
"js\/genTree.js",
"js\/background.js"
],
"persistent": true
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"js\/tabConnect.js"
],
"run_at": "document_idle",
"all_frames": false
}
],
"description": "__MSG_description__",
"options_page": "options.html",
"permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"browsingData",
"downloads",
"downloads.open",
"topSites",
"bookmarks",
"chrome:\/\/favicon\/",
"tabs",
"history",
"management",
"unlimitedStorage",
"storage"
],
"version": "0.9.33",
"name": "__MSG_name__",
"short_name": "__MSG_name__",
"default_locale": "en",
"manifest_version": 2,
"icons": {
"128": "images\/bookmark_128.png",
"48": "images\/bookmark_48.png",
"32": "images\/bookmark_32.png",
"24": "images\/bookmark_24.png",
"16": "images\/bookmark_16.png"
}
} | |