O'Reilly
Get quick access to your content by opening a new tab and find trusted O'Reilly Answers when searching with Google or Stack Overflow
Was ist O'Reilly?
O'Reilly ist eine Chrome-Erweiterung, die von oreilly.com entwickelt wurde, und ihr Hauptmerkmal ist "Get quick access to your content by opening a new tab and find trusted O'Reilly Answers when searching with Google or Stack Overflow".
Erweiterungsscreenshots
O'Reilly-Erweiterungs-CRX-Datei herunterladen
Laden Sie O'Reilly-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
When enabled, you’ll go straight to recordings of your live events and recommendations and can pick up content you’ve recently viewed right where you left off. O’Reilly is dedicated to protecting your privacy. We’ve taken all possible steps to mitigate any potential security risks and protect your personal data.
Grundlegende Informationen zur Erweiterung
Name | O'Reilly |
ID | honddgdnobfcbldlmimekbmphjnehbbb |
Offizielle URL | https://chromewebstore.google.com/detail/oreilly/honddgdnobfcbldlmimekbmphjnehbbb |
Beschreibung | Get quick access to your content by opening a new tab and find trusted O'Reilly Answers when searching with Google or Stack Overflow |
Dateigröße | 256 KB |
Installationsanzahl | 4,650 |
Aktuelle Version | 0.6.5 |
Letztes Update | 2024-02-09 |
Veröffentlichungsdatum | 2021-04-12 |
Bewertung | 2.83/5 Insgesamt 6 Bewertungen |
Entwickler | oreilly.com |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://www.oreilly.com/ |
Hilfeseite URL | https://www.oreilly.com/about/contact.html |
URL der Datenschutzrichtlinien-Seite | https://www.oreilly.com/privacy.html |
Unterstützte Sprachen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "O'Reilly", "version": "0.6.5", "description": "Get quick access to your content by opening a new tab and find trusted O'Reilly Answers when searching with Google or Stack Overflow", "icons": { "16": "src\/app\/assets\/images\/o_dot_16.png", "24": "src\/app\/assets\/images\/o_dot_24.png", "48": "src\/app\/assets\/images\/o_dot_48.png", "72": "src\/app\/assets\/images\/o_dot_72.png", "128": "src\/app\/assets\/images\/o_dot_128.png" }, "action": [], "background": { "service_worker": "service-worker-loader.js", "type": "module" }, "chrome_url_overrides": { "newtab": "src\/app\/pages\/newtab.html" }, "content_scripts": [ { "js": [ "assets\/google.js-loader-e7a5ce9a.js" ], "matches": [ "*:\/\/*.google.com\/*" ] }, { "js": [ "assets\/stackOverflow.js-loader-a38a70c5.js" ], "matches": [ "*:\/\/*.stackoverflow.com\/questions\/*" ] } ], "host_permissions": [ "*:\/\/*.oreilly.review\/", "*:\/\/*.oreilly.com\/" ], "options_ui": { "page": "src\/app\/pages\/options.html" }, "permissions": [ "cookies", "storage" ], "web_accessible_resources": [ { "matches": [ "*:\/\/*.google.com\/*" ], "resources": [ "assets\/google.js-eb940851.js" ], "use_dynamic_url": true }, { "matches": [ "*:\/\/*.stackoverflow.com\/*" ], "resources": [ "assets\/stackOverflow.js-da826bcd.js" ], "use_dynamic_url": true } ] } |