URL SAVER
This extension saves the pages where you at
Was ist URL SAVER?
URL SAVER ist eine Chrome-Erweiterung, die von https://mrluissan.ninja entwickelt wurde, und ihr Hauptmerkmal ist "This extension saves the pages where you at".
URL SAVER-Erweiterungs-CRX-Datei herunterladen
Laden Sie URL SAVER-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
With this extension you will be able to keep the websites you are visiting in a safe place. So that whenever you want to continue read them you'll have them there.
You are also able to bind a shortcut to save the pages and also open the extension.
I think this extension brings something different to what bookmarks do, and it's that you can save the page really quick and also it has a better design than bookmarks. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | ipafapbbcgjnehnjgmlgjmclofgkffjc |
| Offizielle URL | https://chromewebstore.google.com/detail/url-saver/ipafapbbcgjnehnjgmlgjmclofgkffjc |
| Beschreibung | This extension saves the pages where you at |
| Dateigröße | 713 KB |
| Installationsanzahl | 56 |
| Aktuelle Version | 2 |
| Letztes Update | 2017-07-05 |
| Veröffentlichungsdatum | 2017-07-04 |
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
| Entwickler | https://mrluissan.ninja |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "URL SAVER",
"description": "This extension saves the pages where you at ",
"version": "2",
"author": "Luis Adame Rodr\u00edguez - @mrluissan",
"homepage_url": "https:\/\/mrluissan.ninja",
"commands": {
"saveTab": {
"suggested_key": {
"default": "Ctrl+Q",
"mac": "Command+Q"
},
"description": "Saves the url"
}
},
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"default_icon": "\/icons\/icon.png",
"default_popup": "index.html"
},
"icons": {
"16": "\/icons\/icon.png",
"32": "\/icons\/icon32.png",
"48": "\/icons\/icon48.png",
"64": "\/icons\/icon64.png",
"128": "\/icons\/icon128.png"
},
"permissions": [
"tabs",
"notifications"
]
} | |