mirror of
https://github.com/huhu/rust-search-extension
synced 2024-11-16 00:17:57 +00:00
12 lines
No EOL
351 B
JavaScript
12 lines
No EOL
351 B
JavaScript
(function() {
|
|
// Parse crate info from location pathname.
|
|
let [_, crateVersion, crateName] = location.pathname.slice(1).split("/");
|
|
window.postMessage({
|
|
direction: "rust-search-extension",
|
|
message: {
|
|
crateName,
|
|
crateVersion,
|
|
searchIndex: window.searchIndex,
|
|
},
|
|
}, "*");
|
|
})(); |